Skip to content

Commit

Permalink
Remove display for wf count error message (cadence-workflow#5417)
Browse files Browse the repository at this point in the history
  • Loading branch information
ketsiambaku authored Oct 10, 2023
1 parent 765099e commit a253154
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/cli/workflowCommands.go
Original file line number Diff line number Diff line change
Expand Up @@ -1263,9 +1263,7 @@ func listWorkflows(c *cli.Context) getWorkflowPageFn {
Query: c.String(FlagListQuery),
},
)
if err != nil {
printError("Unable to count workflows. Proceeding with fetching list of workflows...", err)
} else {
if err == nil {
fmt.Printf("Fetching %v workflows...\n", resp.GetCount())
}

Expand Down

0 comments on commit a253154

Please sign in to comment.