Skip to content

Commit cb55d25

Browse files
Correct cli argument types to strings from timestamps
1 parent b292477 commit cb55d25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1608,11 +1608,11 @@ var app = &cli.App{
16081608
Name: logsFlagLevels,
16091609
Usage: "filter logs by levels (e.g., info, warn, error)",
16101610
},
1611-
&cli.TimestampFlag{
1611+
&cli.StringFlag{
16121612
Name: generalFlagStart,
16131613
Usage: "ISO-8601 timestamp in RFC3339 format indicating the start of the interval filter",
16141614
},
1615-
&cli.TimestampFlag{
1615+
&cli.StringFlag{
16161616
Name: generalFlagEnd,
16171617
Usage: "ISO-8601 timestamp in RFC3339 format indicating the end of the interval filter",
16181618
},

0 commit comments

Comments
 (0)