From 6d58916cfdca5b6420d1eda768e7db9579dadf89 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 14 Jul 2018 13:39:57 -0700 Subject: [PATCH] fix compilation error --- weed/command/mount_std.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }