mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix mount2 options
This commit is contained in:
parent
72c0233938
commit
fc7a4957ea
|
@ -29,8 +29,8 @@ import (
|
||||||
|
|
||||||
func runMount2(cmd *Command, args []string) bool {
|
func runMount2(cmd *Command, args []string) bool {
|
||||||
|
|
||||||
if *mountOptions.debug {
|
if *mount2Options.debug {
|
||||||
go http.ListenAndServe(fmt.Sprintf(":%d", *mountOptions.debugPort), nil)
|
go http.ListenAndServe(fmt.Sprintf(":%d", *mount2Options.debugPort), nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
grace.SetupProfiling(*mountCpuProfile, *mountMemProfile)
|
grace.SetupProfiling(*mountCpuProfile, *mountMemProfile)
|
||||||
|
@ -39,9 +39,9 @@ func runMount2(cmd *Command, args []string) bool {
|
||||||
}
|
}
|
||||||
util.RetryWaitTime = *mountReadRetryTime
|
util.RetryWaitTime = *mountReadRetryTime
|
||||||
|
|
||||||
umask, umaskErr := strconv.ParseUint(*mountOptions.umaskString, 8, 64)
|
umask, umaskErr := strconv.ParseUint(*mount2Options.umaskString, 8, 64)
|
||||||
if umaskErr != nil {
|
if umaskErr != nil {
|
||||||
fmt.Printf("can not parse umask %s", *mountOptions.umaskString)
|
fmt.Printf("can not parse umask %s", *mount2Options.umaskString)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ func runMount2(cmd *Command, args []string) bool {
|
||||||
func RunMount2(option *Mount2Options, umask os.FileMode) bool {
|
func RunMount2(option *Mount2Options, umask os.FileMode) bool {
|
||||||
|
|
||||||
// basic checks
|
// basic checks
|
||||||
chunkSizeLimitMB := *mountOptions.chunkSizeLimitMB
|
chunkSizeLimitMB := *mount2Options.chunkSizeLimitMB
|
||||||
if chunkSizeLimitMB <= 0 {
|
if chunkSizeLimitMB <= 0 {
|
||||||
fmt.Printf("Please specify a reasonable buffer size.")
|
fmt.Printf("Please specify a reasonable buffer size.")
|
||||||
return false
|
return false
|
||||||
|
@ -155,7 +155,7 @@ func RunMount2(option *Mount2Options, umask os.FileMode) bool {
|
||||||
Name: "seaweedfs",
|
Name: "seaweedfs",
|
||||||
SingleThreaded: false,
|
SingleThreaded: false,
|
||||||
DisableXAttrs: false,
|
DisableXAttrs: false,
|
||||||
Debug: *option.debug,
|
Debug: false, // *option.debug,
|
||||||
EnableLocks: false,
|
EnableLocks: false,
|
||||||
ExplicitDataCacheControl: false,
|
ExplicitDataCacheControl: false,
|
||||||
// SyncRead: false, // set to false to enable the FUSE_CAP_ASYNC_READ capability
|
// 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(),
|
MountCtime: fileInfo.ModTime(),
|
||||||
MountMtime: time.Now(),
|
MountMtime: time.Now(),
|
||||||
Umask: umask,
|
Umask: umask,
|
||||||
VolumeServerAccess: *mountOptions.volumeServerAccess,
|
VolumeServerAccess: *mount2Options.volumeServerAccess,
|
||||||
Cipher: cipher,
|
Cipher: cipher,
|
||||||
UidGidMapper: uidGidMapper,
|
UidGidMapper: uidGidMapper,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue