1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-01 22:56:38 +02:00

fix logging when error

address https://github.com/chrislusf/seaweedfs/pull/1685#issuecomment-747845601
This commit is contained in:
Chris Lu 2020-12-17 19:37:46 -08:00
parent e2076201d7
commit 738c4fd203

View file

@ -257,12 +257,12 @@ func (s *Store) CollectHeartbeat() *master_pb.Heartbeat {
location.volumesLock.Lock()
for _, vid := range deleteVids {
found, err := location.deleteVolumeById(vid)
if found {
if err == nil {
if err == nil {
if found {
glog.V(0).Infof("volume %d is deleted", vid)
} else {
glog.V(0).Infof("delete volume %d: %v", vid, err)
}
} else {
glog.V(0).Infof("delete volume %d: %v", vid, err)
}
}
location.volumesLock.Unlock()