aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-07-21 20:29:33 -0700
committerChris Lu <chris.lu@gmail.com>2018-07-21 20:29:33 -0700
commit16c66e097b0777a8a1944b8f4463b5990fe4421e (patch)
tree2e8f6cd418be52be1901c73a6fa23a8748b97e8c
parent3423c1da18487e4dc3d77a024f9c0d5d3b7599cf (diff)
downloadseaweedfs-16c66e097b0777a8a1944b8f4463b5990fe4421e.tar.xz
seaweedfs-16c66e097b0777a8a1944b8f4463b5990fe4421e.zip
adjust default buckets folder
-rw-r--r--weed/command/s3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/s3.go b/weed/command/s3.go
index 1966cb954..2d58d93a9 100644
--- a/weed/command/s3.go
+++ b/weed/command/s3.go
@@ -27,7 +27,7 @@ func init() {
cmdS3.Run = runS3 // break init cycle
s3options.filer = cmdS3.Flag.String("filer", "localhost:8888", "filer server address")
s3options.filerGrpcPort = cmdS3.Flag.Int("filer.grpcPort", 0, "filer server grpc port, default to filer http port plus 10000")
- s3options.filerBucketsPath = cmdS3.Flag.String("filer.dir.buckets", "/s3buckets", "folder on filer to store all buckets")
+ s3options.filerBucketsPath = cmdS3.Flag.String("filer.dir.buckets", "/buckets", "folder on filer to store all buckets")
s3options.port = cmdS3.Flag.Int("port", 8333, "s3options server http listen port")
s3options.domainName = cmdS3.Flag.String("domainName", "", "suffix of the host name, {bucket}.{domainName}")
}