Browse Source

remove println

pull/1255/head
Chris Lu 5 years ago
parent
commit
e39e78ea8d
  1. 1
      weed/topology/node.go

1
weed/topology/node.go

@ -196,7 +196,6 @@ func (n *NodeImpl) UpAdjustMaxVolumeCountDelta(maxVolumeCountDelta int64) { //ca
return
}
atomic.AddInt64(&n.maxVolumeCount, maxVolumeCountDelta)
println("node", n.Id(), "new max", n.maxVolumeCount, "delta", maxVolumeCountDelta)
if n.parent != nil {
n.parent.UpAdjustMaxVolumeCountDelta(maxVolumeCountDelta)
}

Loading…
Cancel
Save