Browse Source

skip error if conf file is not created

pull/6090/head
chrislu 3 months ago
parent
commit
11e53dd8ef
  1. 5
      weed/mount/filer_conf.go

5
weed/mount/filer_conf.go

@ -1,6 +1,7 @@
package mount
import (
"errors"
"fmt"
"path/filepath"
"sync/atomic"
@ -38,8 +39,12 @@ func (wfs *WFS) subscribeFilerConfEvents() (func(), error) {
return nil
})
if err != nil {
if errors.Is(err, filer_pb.ErrNotFound) {
glog.V(0).Infof("fuse filer conf %s not found", confFullName)
} else {
return nil, err
}
}
processEventFn := func(resp *filer_pb.SubscribeMetadataResponse) error {
message := resp.EventNotification

Loading…
Cancel
Save