mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
mount: load security keys
fix https://github.com/chrislusf/seaweedfs/issues/1714
This commit is contained in:
parent
89977123b6
commit
adef4ddc87
|
@ -58,6 +58,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
|
|||
return true
|
||||
}
|
||||
|
||||
util.LoadConfiguration("security", false)
|
||||
// try to connect to filer, filerBucketsPath may be useful later
|
||||
grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")
|
||||
var cipher bool
|
||||
|
@ -78,8 +79,6 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
|
|||
dir := util.ResolvePath(*option.dir)
|
||||
chunkSizeLimitMB := *mountOptions.chunkSizeLimitMB
|
||||
|
||||
util.LoadConfiguration("security", false)
|
||||
|
||||
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.Version(), runtime.GOOS, runtime.GOARCH)
|
||||
if dir == "" {
|
||||
fmt.Printf("Please specify the mount directory via \"-dir\"")
|
||||
|
|
Loading…
Reference in a new issue