1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-26 04:18:59 +02:00

filer store: skip disabled location specific filer store initialization

fix https://github.com/seaweedfs/seaweedfs/issues/3971
This commit is contained in:
chrislu 2022-11-13 23:30:23 -08:00
parent 7ac40ae3d4
commit d90aa31d5f

View file

@ -63,6 +63,11 @@ func (f *Filer) LoadConfiguration(config *util.ViperProxy) (isFresh bool) {
if !found {
continue
}
if !config.GetBool(key + ".enabled") {
continue
}
store = reflect.New(reflect.ValueOf(store).Elem().Type()).Interface().(FilerStore)
if err := store.Initialize(config, key+"."); err != nil {
glog.Fatalf("Failed to initialize store for %s: %+v", key, err)