Merge pull request #1699 from bmillemathias/master

[shell] Add more information to bucket.create
This commit is contained in:
Chris Lu 2020-12-22 10:02:51 -08:00 committed by GitHub
commit 9cd26c6ca5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}