diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-12-23 14:37:37 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-12-23 14:37:37 -0800 |
| commit | 15da5834e1a33d060924740ba195f6bcd79f2af2 (patch) | |
| tree | 111c620c411c60a0c12e1e3c3eb0269aece87422 | |
| parent | 132f275d04df3efa925c0d3d071bc927d669f489 (diff) | |
| parent | 3be363579971470fff1acc8ebf668a3f3851fa33 (diff) | |
| download | seaweedfs-15da5834e1a33d060924740ba195f6bcd79f2af2.tar.xz seaweedfs-15da5834e1a33d060924740ba195f6bcd79f2af2.zip | |
Merge branch 'master' into support_ssd_volume
| -rw-r--r-- | weed/shell/command_s3_bucket_create.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weed/shell/command_s3_bucket_create.go b/weed/shell/command_s3_bucket_create.go index 28cf1d945..a512ffc4a 100644 --- a/weed/shell/command_s3_bucket_create.go +++ b/weed/shell/command_s3_bucket_create.go @@ -34,7 +34,9 @@ func (c *commandS3BucketCreate) Do(args []string, commandEnv *CommandEnv, writer bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) bucketName := bucketCommand.String("name", "", "bucket name") - replication := bucketCommand.String("replication", "", "replication setting for the bucket, if not set it will honor the setting defined by the filer or master") + replication := bucketCommand.String("replication", "", "replication setting for the bucket, if not set "+ + "it will honor the value defined by the filer if it exists, "+ + "else it will honor the value defined on the master") if err = bucketCommand.Parse(args); err != nil { return nil } |
