From c5ea2c4c0ec76ed660b4010774b2f091ee8e1278 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Wed, 20 Sep 2023 18:38:19 -0400 Subject: [PATCH] Correct errant casing for MoveTables Signed-off-by: Matt Lord --- go/cmd/vtctldclient/command/vreplication/movetables/create.go | 2 +- .../vtctldclient/command/vreplication/movetables/movetables.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go/cmd/vtctldclient/command/vreplication/movetables/create.go b/go/cmd/vtctldclient/command/vreplication/movetables/create.go index 23073cfc2ab..673460e1910 100644 --- a/go/cmd/vtctldclient/command/vreplication/movetables/create.go +++ b/go/cmd/vtctldclient/command/vreplication/movetables/create.go @@ -44,7 +44,7 @@ var ( // moveTablesCreate makes a moveTablesCreate gRPC call to a vtctld. moveTablesCreate = &cobra.Command{ Use: "create", - Short: "Create and optionally run a moveTables VReplication workflow.", + Short: "Create and optionally run a MoveTables VReplication workflow.", Example: `vtctldclient --server localhost:15999 movetables --workflow commerce2customer --target-keyspace customer create --source-keyspace commerce --cells zone1 --cells zone2 --tablet-types replica`, SilenceUsage: true, DisableFlagsInUseLine: true, diff --git a/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go b/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go index 7ff7924d968..5e0faf807a3 100644 --- a/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go +++ b/go/cmd/vtctldclient/command/vreplication/movetables/movetables.go @@ -27,7 +27,7 @@ var ( moveTables = &cobra.Command{ Use: "MoveTables --workflow --keyspace [command] [command-flags]", Short: "Perform commands related to moving tables from a source keyspace to a target keyspace.", - Long: `moveTables commands: Create, Show, Status, SwitchTraffic, ReverseTraffic, Stop, Start, Cancel, and Delete. + Long: `MoveTables commands: Create, Show, Status, SwitchTraffic, ReverseTraffic, Stop, Start, Cancel, and Delete. See the --help output for each command for more details.`, DisableFlagsInUseLine: true, Aliases: []string{"movetables"},