aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-02-25 21:22:44 -0800
committerchrislu <chris.lu@gmail.com>2022-02-25 21:22:44 -0800
commitfc7a4957eae6a3f58fb52c88210019e4af89a290 (patch)
treef1a9c276052fad3b64dd85799a4b507004f042ec
parent72c0233938c7f855219b6e89d7ffb2c46e375ab1 (diff)
downloadseaweedfs-fc7a4957eae6a3f58fb52c88210019e4af89a290.tar.xz
seaweedfs-fc7a4957eae6a3f58fb52c88210019e4af89a290.zip
fix mount2 options
-rw-r--r--weed/command/mount2_std.go14
1 files 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,
})