mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
stop when dn.parent is nil
fix https://github.com/chrislusf/seaweedfs/issues/473
This commit is contained in:
parent
72e89b615b
commit
2c7dad589d
|
@ -56,5 +56,7 @@ func (t *Topology) UnRegisterDataNode(dn *DataNode) {
|
|||
dn.UpAdjustVolumeCountDelta(-dn.GetVolumeCount())
|
||||
dn.UpAdjustActiveVolumeCountDelta(-dn.GetActiveVolumeCount())
|
||||
dn.UpAdjustMaxVolumeCountDelta(-dn.GetMaxVolumeCount())
|
||||
dn.Parent().UnlinkChildNode(dn.Id())
|
||||
if dn.Parent() != nil {
|
||||
dn.Parent().UnlinkChildNode(dn.Id())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue