mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-22 20:14:05 +08:00
fix wrong logic
This commit is contained in:
@@ -168,7 +168,7 @@ func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption)
|
|||||||
startFromTime := time.Now().Add(-filer.LogFlushInterval)
|
startFromTime := time.Now().Add(-filer.LogFlushInterval)
|
||||||
if isFresh {
|
if isFresh {
|
||||||
glog.V(0).Infof("%s bootstrap from peers %+v", option.Host, existingNodes)
|
glog.V(0).Infof("%s bootstrap from peers %+v", option.Host, existingNodes)
|
||||||
if err := fs.filer.MaybeBootstrapFromPeers(option.Host, existingNodes, startFromTime); err == nil {
|
if err := fs.filer.MaybeBootstrapFromPeers(option.Host, existingNodes, startFromTime); err != nil {
|
||||||
glog.Fatalf("%s bootstrap from %+v", option.Host, existingNodes)
|
glog.Fatalf("%s bootstrap from %+v", option.Host, existingNodes)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user