From fc7a4957eae6a3f58fb52c88210019e4af89a290 Mon Sep 17 00:00:00 2001 From: chrislu Date: Fri, 25 Feb 2022 21:22:44 -0800 Subject: [PATCH] fix mount2 options --- weed/command/mount2_std.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/weed/command/mount2_std.go b/weed/command/mount2_std.go index 721c380e4..9f87b35b5 100644 --- a/weed/command/mount2_std.go +++ b/weed/command/mount2_std.go @@ -29,8 +29,8 @@ import ( func runMount2(cmd *Command, args []string) bool { - if *mountOptions.debug { - go http.ListenAndServe(fmt.Sprintf(":%d", *mountOptions.debugPort), nil) + if *mount2Options.debug { + go http.ListenAndServe(fmt.Sprintf(":%d", *mount2Options.debugPort), nil) } grace.SetupProfiling(*mountCpuProfile, *mountMemProfile) @@ -39,9 +39,9 @@ func runMount2(cmd *Command, args []string) bool { } util.RetryWaitTime = *mountReadRetryTime - umask, umaskErr := strconv.ParseUint(*mountOptions.umaskString, 8, 64) + umask, umaskErr := strconv.ParseUint(*mount2Options.umaskString, 8, 64) if umaskErr != nil { - fmt.Printf("can not parse umask %s", *mountOptions.umaskString) + fmt.Printf("can not parse umask %s", *mount2Options.umaskString) return false } @@ -55,7 +55,7 @@ func runMount2(cmd *Command, args []string) bool { func RunMount2(option *Mount2Options, umask os.FileMode) bool { // basic checks - chunkSizeLimitMB := *mountOptions.chunkSizeLimitMB + chunkSizeLimitMB := *mount2Options.chunkSizeLimitMB if chunkSizeLimitMB <= 0 { fmt.Printf("Please specify a reasonable buffer size.") return false @@ -155,7 +155,7 @@ func RunMount2(option *Mount2Options, umask os.FileMode) bool { Name: "seaweedfs", SingleThreaded: false, DisableXAttrs: false, - Debug: *option.debug, + Debug: false, // *option.debug, EnableLocks: false, ExplicitDataCacheControl: false, // SyncRead: false, // set to false to enable the FUSE_CAP_ASYNC_READ capability @@ -190,7 +190,7 @@ func RunMount2(option *Mount2Options, umask os.FileMode) bool { MountCtime: fileInfo.ModTime(), MountMtime: time.Now(), Umask: umask, - VolumeServerAccess: *mountOptions.volumeServerAccess, + VolumeServerAccess: *mount2Options.volumeServerAccess, Cipher: cipher, UidGidMapper: uidGidMapper, })