fix(influx): update default value of list tasks influx command to 100 (#19732)

pull/19734/head
Johnny Steenbergen 2020-10-12 16:05:56 -07:00 committed by GitHub
parent d28e55d3b6
commit db97f1c1f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ func taskRunFindCmd(f *globalFlags, opt genericCLIOpts) *cobra.Command {
cmd.Flags().StringVarP(&taskRunFindFlags.runID, "run-id", "", "", "run id")
cmd.Flags().StringVarP(&taskRunFindFlags.afterTime, "after", "", "", "after time for filtering")
cmd.Flags().StringVarP(&taskRunFindFlags.beforeTime, "before", "", "", "before time for filtering")
cmd.Flags().IntVarP(&taskRunFindFlags.limit, "limit", "", 0, "limit the results")
cmd.Flags().IntVarP(&taskRunFindFlags.limit, "limit", "", 100, "limit the results; default is 100")
cmd.MarkFlagRequired("task-id")