From b4ec04d4646de48ce134248876bf0e14b70b6eba Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 21 Jun 2020 08:31:20 -0700 Subject: [PATCH] fix the help message --- weed/command/server.go | 2 +- weed/command/volume.go | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/weed/command/server.go b/weed/command/server.go index fadd08a66..d83405df6 100644 --- a/weed/command/server.go +++ b/weed/command/server.go @@ -54,7 +54,7 @@ var ( serverWhiteListOption = cmdServer.Flag.String("whiteList", "", "comma separated Ip addresses having write permission. No limit if empty.") serverDisableHttp = cmdServer.Flag.Bool("disableHttp", false, "disable http requests, only gRPC operations are allowed.") volumeDataFolders = cmdServer.Flag.String("dir", os.TempDir(), "directories to store data files. dir[,dir]...") - volumeMaxDataVolumeCounts = cmdServer.Flag.String("volume.max", "7", "maximum numbers of volumes, count[,count]... If set to zero on non-windows OS, the limit will be auto configured.") + volumeMaxDataVolumeCounts = cmdServer.Flag.String("volume.max", "7", "maximum numbers of volumes, count[,count]... If set to zero, the limit will be auto configured.") volumeMinFreeSpacePercent = cmdServer.Flag.String("volume.minFreeSpacePercent", "0", "minimum free disk space(in percents). If free disk space lower this value - all volumes marks as ReadOnly") // pulseSeconds = cmdServer.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats") diff --git a/weed/command/volume.go b/weed/command/volume.go index a20ac8c81..951f5ec00 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -134,6 +134,9 @@ func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, v glog.Fatalf("The value specified in -minFreeSpacePercent not a valid value %s", freeString) } } + if len(v.folders) != len(v.minFreeSpacePercent) { + glog.Fatalf("%d directories by -dir, but only %d max is set by -max", len(v.folders), len(v.folderMaxLimits)) + } for _, folder := range v.folders { if err := util.TestFolderWritable(folder); err != nil {