From 0ed534595412aea8fc798cb29af403f3108a5cb7 Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Tue, 22 Dec 2020 17:18:59 +0100 Subject: [PATCH] [shell] Add more information to bucket.create State the replication setting that will be honor if not defined. --- weed/shell/command_bucket_create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/shell/command_bucket_create.go b/weed/shell/command_bucket_create.go index 52d96e4c3..bbf5385dc 100644 --- a/weed/shell/command_bucket_create.go +++ b/weed/shell/command_bucket_create.go @@ -34,7 +34,7 @@ func (c *commandBucketCreate) Do(args []string, commandEnv *CommandEnv, writer i bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) bucketName := bucketCommand.String("name", "", "bucket name") - replication := bucketCommand.String("replication", "", "replication setting for the bucket") + replication := bucketCommand.String("replication", "", "replication setting for the bucket, if not set it will honor the setting defined by the master") if err = bucketCommand.Parse(args); err != nil { return nil }