Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Added task concurrentExecLimit to UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyzhao committed Dec 15, 2017
1 parent 0037337 commit e983cc6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/components/workflow/tasks/TasksMetaList.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const TaskMetaList = React.createClass({
</Input><br/>
<Input type="text" ref="timeoutSeconds" value={row.timeoutSeconds} addonBefore="Time Out" addonAfter="Seconds"></Input><br/>
<Input type="text" ref="restimeoutSeconds" value={row.responseTimeoutSeconds} addonBefore="Response Time Out" addonAfter="timeoutSeconds"></Input><br/>
<Input type="text" ref="concurrentExecLimit" value={row.concurrentExecLimit} addonBefore="Concurrent Exec Limit"></Input><br/>
<Input type="textarea" label="Task Description" ref="description" value={row.description} readonly={true}/><br/>
</form>
</div></Popover>
Expand All @@ -64,6 +65,7 @@ const TaskMetaList = React.createClass({
<TableHeaderColumn dataField="timeoutPolicy" dataSort={true} >Timeout Policy</TableHeaderColumn>
<TableHeaderColumn dataField="timeoutSeconds" dataSort={true} >Timeout Seconds</TableHeaderColumn>
<TableHeaderColumn dataField="retryCount" dataSort={true} >Retry Count</TableHeaderColumn>
<TableHeaderColumn dataField="concurrentExecLimit" dataSort={true} >Concurrent Exec Limit</TableHeaderColumn>
<TableHeaderColumn dataField="retryLogic" dataSort={true} dataFormat={retries}>Retry Logic</TableHeaderColumn>
</BootstrapTable>
</div>
Expand Down

0 comments on commit e983cc6

Please sign in to comment.