Skip to content

Commit

Permalink
Add Status column when printing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
feedmeapples committed May 18, 2022
1 parent b5bf60a commit e76ea66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/workflowCommands.go
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,8 @@ func ListWorkflow(c *cli.Context) error {

iter := collection.NewPagingIterator(paginationFunc)
opts := &output.PrintOptions{
Fields: []string{"Execution.WorkflowId", "Execution.RunId", "StartTime"},
FieldsLong: []string{"Type.Name", "TaskQueue", "ExecutionTime", "CloseTime"},
Fields: []string{"Status", "Execution.WorkflowId", "Execution.RunId", "StartTime"},
FieldsLong: []string{"CloseTime", "Type.Name", "TaskQueue"},
}
return output.Pager(c, iter, opts)
}
Expand Down

0 comments on commit e76ea66

Please sign in to comment.