aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_std.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-05-28 13:42:25 -0700
committerChris Lu <chris.lu@gmail.com>2018-05-28 13:42:25 -0700
commit5c4480ec6c941e16efd4157ee98e67d21b5859fb (patch)
tree3ffe96a1f48ebee3f2348fd18c0a5ff9c618818f /weed/command/mount_std.go
parent8ab7dd9d08dbf326046bfcf0c1fac5d171600a7d (diff)
downloadseaweedfs-5c4480ec6c941e16efd4157ee98e67d21b5859fb.tar.xz
seaweedfs-5c4480ec6c941e16efd4157ee98e67d21b5859fb.zip
add mountOptions.chunkSizeLimitMB, remove cmdMount.IsDebug
Diffstat (limited to 'weed/command/mount_std.go')
-rw-r--r--weed/command/mount_std.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index fcf663e1c..7e7a35f3d 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -48,7 +48,7 @@ func runMount(cmd *Command, args []string) bool {
})
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
- *mountOptions.filer, *mountOptions.collection, *mountOptions.replication))
+ *mountOptions.filer, *mountOptions.collection, *mountOptions.replication, *mountOptions.chunkSizeLimitMB))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}