filer: move buckets folder to filer.toml since it should not be changed often

This commit is contained in:
Chris Lu
2020-02-24 14:42:57 -08:00
parent d8dec2323b
commit 5bcb44eda9
4 changed files with 3 additions and 5 deletions

View File

@@ -33,7 +33,6 @@ type FilerOptions struct {
dataCenter *string
enableNotification *bool
disableHttp *bool
dirBucketsPath *string
// default leveldb directory, used in "weed server" mode
defaultLevelDbDirectory *string
@@ -53,7 +52,6 @@ func init() {
f.dirListingLimit = cmdFiler.Flag.Int("dirListLimit", 100000, "limit sub dir listing size")
f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to write to volumes in this data center")
f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed")
f.dirBucketsPath = cmdFiler.Flag.String("dir.buckets", "/buckets", "folder to store all buckets")
}
var cmdFiler = &Command{
@@ -111,7 +109,6 @@ func (fo *FilerOptions) startFiler() {
DataCenter: *fo.dataCenter,
DefaultLevelDbDir: defaultLevelDbDirectory,
DisableHttp: *fo.disableHttp,
DirBucketsPath: *fo.dirBucketsPath,
Port: *fo.port,
})
if nfs_err != nil {