aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_ec_balance.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-06-01 10:37:08 -0700
committerChris Lu <chris.lu@gmail.com>2019-06-01 10:37:08 -0700
commit9ce6b949bf778e16cbf0f2e73ad508c65c3c8fc3 (patch)
tree47d28787538157aafedbb903b11d5a6d54131037 /weed/shell/command_ec_balance.go
parentd6e2c877fad37db0a21658cd4ce24ae93817ab3e (diff)
downloadseaweedfs-9ce6b949bf778e16cbf0f2e73ad508c65c3c8fc3.tar.xz
seaweedfs-9ce6b949bf778e16cbf0f2e73ad508c65c3c8fc3.zip
adjust help message
Diffstat (limited to 'weed/shell/command_ec_balance.go')
-rw-r--r--weed/shell/command_ec_balance.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_ec_balance.go b/weed/shell/command_ec_balance.go
index fcfe616c1..7118f2195 100644
--- a/weed/shell/command_ec_balance.go
+++ b/weed/shell/command_ec_balance.go
@@ -56,7 +56,7 @@ func (c *commandEcBalance) Help() string {
func (c *commandEcBalance) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
balanceCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- collection := balanceCommand.String("c", "EACH_COLLECTION", "collection name, or use \"EACH_COLLECTION\" for each collection")
+ collection := balanceCommand.String("c", "EACH_COLLECTION", "collection name, or \"EACH_COLLECTION\" for each collection")
dc := balanceCommand.String("dataCenter", "", "only apply the balancing for this dataCenter")
applyBalancing := balanceCommand.Bool("f", false, "apply the balancing plan")
if err = balanceCommand.Parse(args); err != nil {