From 37c4e32c136c12c4bdf9b423b4d811dbd11af87d Mon Sep 17 00:00:00 2001 From: Bowei Xu Date: Thu, 14 Nov 2019 13:26:39 -0800 Subject: [PATCH] CLI improve list command usage hint on timestamp (#2822) --- tools/cli/flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cli/flags.go b/tools/cli/flags.go index 95b725f20b7..fad9be26ffa 100644 --- a/tools/cli/flags.go +++ b/tools/cli/flags.go @@ -402,11 +402,11 @@ func getFlagsForListAll() []cli.Flag { }, cli.StringFlag{ Name: FlagEarliestTimeWithAlias, - Usage: "EarliestTime of start time, supported formats are '2006-01-02T15:04:05Z07:00' and raw UnixNano", + Usage: "EarliestTime of start time, supported formats are '2006-01-02T15:04:05+07:00' and raw UnixNano", }, cli.StringFlag{ Name: FlagLatestTimeWithAlias, - Usage: "LatestTime of start time, supported formats are '2006-01-02T15:04:05Z07:00' and raw UnixNano", + Usage: "LatestTime of start time, supported formats are '2006-01-02T15:04:05+07:00' and raw UnixNano", }, cli.StringFlag{ Name: FlagWorkflowIDWithAlias,