aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_std.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-05-29 01:21:21 -0700
committerChris Lu <chris.lu@gmail.com>2018-05-29 01:21:21 -0700
commit4e3ea49cffd2c65d1354c1406472027914775a49 (patch)
tree530c38f60c766793706d489ed46f06919941fd72 /weed/command/mount_std.go
parentc4b92e17d033df1e348d3ab83c1ba5603e473a4f (diff)
downloadseaweedfs-4e3ea49cffd2c65d1354c1406472027914775a49.tar.xz
seaweedfs-4e3ea49cffd2c65d1354c1406472027914775a49.zip
properly working local write buffer
Diffstat (limited to 'weed/command/mount_std.go')
-rw-r--r--weed/command/mount_std.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 7e7a35f3d..d8b6884ff 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -19,6 +19,10 @@ func runMount(cmd *Command, args []string) bool {
fmt.Printf("Please specify the mount directory via \"-dir\"")
return false
}
+ if *mountOptions.chunkSizeLimitMB <= 0 {
+ fmt.Printf("Please specify a reasonable buffer size.")
+ return false
+ }
fuse.Unmount(*mountOptions.dir)