1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-01 16:22:43 +02:00

fix mount2 options

This commit is contained in:
chrislu 2022-02-25 21:22:44 -08:00
parent 72c0233938
commit fc7a4957ea

View file

@ -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,
})