diff --git a/temporalcli/commands.gen.go b/temporalcli/commands.gen.go index a56d6d3c..181cd85c 100644 --- a/temporalcli/commands.gen.go +++ b/temporalcli/commands.gen.go @@ -311,7 +311,7 @@ func NewTemporalCommand(cctx *CommandContext) *TemporalCommand { s.Command.PersistentFlags().Var(&s.Color, "color", "Output coloring. Accepted values: always, never, auto.") s.Command.PersistentFlags().BoolVar(&s.NoJsonShorthandPayloads, "no-json-shorthand-payloads", false, "Raw payload output, even if the JSON option was used.") s.CommandTimeout = 0 - s.Command.PersistentFlags().Var(&s.CommandTimeout, "command-timeout", "Timeout for the span of a command.") + s.Command.PersistentFlags().Var(&s.CommandTimeout, "command-timeout", "The command execution timeout. 0s means no timeout.") s.initCommand(cctx) return &s } diff --git a/temporalcli/commandsgen/commands.yml b/temporalcli/commandsgen/commands.yml index e03e572b..516a4e5e 100644 --- a/temporalcli/commandsgen/commands.yml +++ b/temporalcli/commandsgen/commands.yml @@ -197,7 +197,8 @@ commands: description: Raw payload output, even if the JSON option was used. - name: command-timeout type: duration - description: Timeout for the span of a command. + description: | + The command execution timeout. 0s means no timeout. - name: temporal activity summary: Complete or fail an Activity