mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
add missing error in the log
related to https://github.com/seaweedfs/seaweedfs/issues/5084
This commit is contained in:
parent
556a242acf
commit
5fe4c04a1a
|
@ -171,7 +171,7 @@ func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption)
|
||||||
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: %v", option.Host, existingNodes, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fs.filer.AggregateFromPeers(option.Host, existingNodes, startFromTime)
|
fs.filer.AggregateFromPeers(option.Host, existingNodes, startFromTime)
|
||||||
|
|
Loading…
Reference in a new issue