diff --git a/go/cmd/vtctldclient/command/vreplication/common/utils.go b/go/cmd/vtctldclient/command/vreplication/common/utils.go index db204c208cd..2bf107ce23c 100644 --- a/go/cmd/vtctldclient/command/vreplication/common/utils.go +++ b/go/cmd/vtctldclient/command/vreplication/common/utils.go @@ -79,7 +79,7 @@ func RegisterCommands(root *cobra.Command) { type SubCommandsOpts struct { SubCommand string - Workflow string + Workflow string // used to specify an example workflow name for the Examples section of the help output. } func SetClient(c vtctldclient.VtctldClient) { diff --git a/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go b/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go index 7ffaec86927..7ff7924d968 100644 --- a/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go +++ b/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go @@ -42,6 +42,7 @@ func registerMoveTablesCommands(root *cobra.Command) { registerCreateCommand(moveTables) opts := &common.SubCommandsOpts{ SubCommand: "MoveTables", + Workflow: "commerce2customer", } moveTables.AddCommand(common.GetShowCommand(opts)) moveTables.AddCommand(common.GetStatusCommand(opts)) diff --git a/go/cmd/vtctldclient/command/vreplication/reshard/reshard.go b/go/cmd/vtctldclient/command/vreplication/reshard/reshard.go index e06c166a5c0..88a3b71a634 100644 --- a/go/cmd/vtctldclient/command/vreplication/reshard/reshard.go +++ b/go/cmd/vtctldclient/command/vreplication/reshard/reshard.go @@ -42,6 +42,7 @@ func registerReshardCommands(root *cobra.Command) { registerCreateCommand(reshard) opts := &common.SubCommandsOpts{ SubCommand: "Reshard", + Workflow: "cust2cust", } reshard.AddCommand(common.GetShowCommand(opts)) reshard.AddCommand(common.GetStatusCommand(opts))