Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/temporalcli/commands.gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -2010,7 +2010,7 @@ func NewTemporalOperatorNamespaceDeleteCommand(cctx *CommandContext, parent *Tem
s.Command.Long = "Removes a Namespace from the Service.\n\n```\ntemporal operator namespace delete [options]\n```\n\nFor example:\n\n```\ntemporal operator namespace delete \\\n --namespace YourNamespaceName\n```"
}
s.Command.Args = cobra.MaximumNArgs(1)
s.Command.Flags().BoolVarP(&s.Yes, "yes", "y", false, "Request confirmation before deletion.")
s.Command.Flags().BoolVarP(&s.Yes, "yes", "y", false, "Don't prompt to confirm deletion.")
s.Command.Run = func(c *cobra.Command, args []string) {
if err := s.run(cctx, args); err != nil {
cctx.Options.Fail(err)
Expand Down
2 changes: 1 addition & 1 deletion internal/temporalcli/commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2355,7 +2355,7 @@ commands:
- name: yes
short: y
type: bool
description: Request confirmation before deletion.
description: Don't prompt to confirm deletion.

- name: temporal operator namespace describe
summary: Describe a Namespace
Expand Down