Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolodezny committed Apr 9, 2020
1 parent f1fe5ea commit 82a77bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cli/workflowCommands.go
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ func appendWorkflowExecutionsToTable(
executionTime = convertTime(e.GetExecutionTime(), !printDateTime)
closeTime = convertTime(e.GetCloseTime(), !printDateTime)
}
row := []string{trimWorkflowType(e.Type.GetName()), e.Execution.GetWorkflowId(), e.Execution.GetRunId(), *e.TaskList, startTime, executionTime}
row := []string{trimWorkflowType(e.Type.GetName()), e.Execution.GetWorkflowId(), e.Execution.GetRunId(), e.GetTaskList(), startTime, executionTime}
if !queryOpen {
row = append(row, closeTime)
}
Expand Down

0 comments on commit 82a77bd

Please sign in to comment.