diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-05-28 13:42:25 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-05-28 13:42:25 -0700 |
| commit | 5c4480ec6c941e16efd4157ee98e67d21b5859fb (patch) | |
| tree | 3ffe96a1f48ebee3f2348fd18c0a5ff9c618818f /weed/command/mount_std.go | |
| parent | 8ab7dd9d08dbf326046bfcf0c1fac5d171600a7d (diff) | |
| download | seaweedfs-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.go | 2 |
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) } |
