aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-07-14 13:39:57 -0700
committerChris Lu <chris.lu@gmail.com>2018-07-14 13:39:57 -0700
commit6d58916cfdca5b6420d1eda768e7db9579dadf89 (patch)
tree7de3b26223601f7a00bcc9b006732a4702c69f78
parent842dab07b4e0cdf31e534b40afce5c64c19d646e (diff)
downloadseaweedfs-6d58916cfdca5b6420d1eda768e7db9579dadf89.tar.xz
seaweedfs-6d58916cfdca5b6420d1eda768e7db9579dadf89.zip
fix compilation error
-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 f2ec349bc..05ed2a02a 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -74,7 +74,7 @@ func runMount(cmd *Command, args []string) bool {
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
filerAddress, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
- *mountOptions.chunkSizeLimitMB))
+ *mountOptions.chunkSizeLimitMB, *mountOptions.dataCenter))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}