mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix max volume count reporting
This commit is contained in:
parent
d6412f27a0
commit
c16dc57a58
|
@ -81,7 +81,7 @@ func (ms *MasterServer) SendHeartbeat(stream master_pb.Seaweed_SendHeartbeatServ
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if dn.GetMaxVolumeCount() != int64(heartbeat.MaxVolumeCount) {
|
if heartbeat.MaxVolumeCount != 0 && dn.GetMaxVolumeCount() != int64(heartbeat.MaxVolumeCount) {
|
||||||
delta := int64(heartbeat.MaxVolumeCount) - dn.GetMaxVolumeCount()
|
delta := int64(heartbeat.MaxVolumeCount) - dn.GetMaxVolumeCount()
|
||||||
dn.UpAdjustMaxVolumeCountDelta(delta)
|
dn.UpAdjustMaxVolumeCountDelta(delta)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue