mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-25 03:29:10 +08:00
Fix data race about config
This commit is contained in:
parent
d8f5985e5e
commit
b556d3d035
@ -42,7 +42,8 @@ func LoadConfiguration(configFileName string, required bool) (loaded bool) {
|
||||
}
|
||||
|
||||
func GetViper() *viper.Viper {
|
||||
v := viper.GetViper()
|
||||
v := &viper.Viper{}
|
||||
*v = *viper.GetViper()
|
||||
v.AutomaticEnv()
|
||||
v.SetEnvPrefix("weed")
|
||||
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
||||
|
Loading…
Reference in New Issue
Block a user