aboutsummaryrefslogtreecommitdiff
path: root/weed/command/volume.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command/volume.go')
-rw-r--r--weed/command/volume.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/command/volume.go b/weed/command/volume.go
index 91d9fb925..3ad8ba1bb 100644
--- a/weed/command/volume.go
+++ b/weed/command/volume.go
@@ -40,7 +40,7 @@ type VolumeServerOptions struct {
portGrpc *int
publicPort *int
folders []string
- folderMaxLimits []int
+ folderMaxLimits []int32
idxFolder *string
ip *string
publicUrl *string
@@ -148,8 +148,8 @@ func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, v
// set max
maxCountStrings := strings.Split(maxVolumeCounts, ",")
for _, maxString := range maxCountStrings {
- if max, e := strconv.Atoi(maxString); e == nil {
- v.folderMaxLimits = append(v.folderMaxLimits, max)
+ if max, e := strconv.ParseInt(maxString, 10, 64); e == nil {
+ v.folderMaxLimits = append(v.folderMaxLimits, int32(max))
} else {
glog.Fatalf("The max specified in -max not a valid number %s", maxString)
}