aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2020-12-22 10:02:51 -0800
committerGitHub <noreply@github.com>2020-12-22 10:02:51 -0800
commit9cd26c6ca575ccbfe5d0b4ebcd1166404e2721b1 (patch)
treefc03dea360ee4a607cadb8cb7abdca3e032d19f7
parent97e3432dfe0cdc7e5852846428b2b3e552568830 (diff)
parent0ed534595412aea8fc798cb29af403f3108a5cb7 (diff)
downloadseaweedfs-9cd26c6ca575ccbfe5d0b4ebcd1166404e2721b1.tar.xz
seaweedfs-9cd26c6ca575ccbfe5d0b4ebcd1166404e2721b1.zip
Merge pull request #1699 from bmillemathias/master
[shell] Add more information to bucket.create
-rw-r--r--weed/shell/command_bucket_create.go2
1 files changed, 1 insertions, 1 deletions
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
}