blob: 96d03699ea0e3a52459cd0590d7b1a40a34520e2 [file] [log] [blame]
//
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
table.table.table-properties(ng-if="job['execution-config']")
thead
tr
th(colspan="2")
| Execution configuration
tbody
tr
td Execution mode
td {{ job['execution-config']['execution-mode'] }}
tr
td Max. number of execution retries
td {{ job['execution-config']['restart-strategy'] }}
tr
td Job parallelism
td {{ job['execution-config']['job-parallelism'] === -1 ? 'auto' : job['execution-config']['job-parallelism'] }}
tr
td Object reuse mode
td {{ job['execution-config']['object-reuse-mode'] }}
table.table.table-properties(ng-if="job['execution-config']['user-config']")
thead
tr
th(colspan="2")
| User configuration
tbody
tr(ng-repeat="property in job['execution-config']['user-config']")
td {{property.name}}
td(table-property value="property.value")