mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-22 23:03:36 +08:00
remove extra code
This commit is contained in:
@@ -19,7 +19,6 @@ func NewTopology(id NodeId) *Topology{
|
||||
func (t *Topology) RandomlyReserveOneVolume() (bool, *Node, storage.VolumeId) {
|
||||
slots := t.Node.maxVolumeCount-t.Node.activeVolumeCount
|
||||
r := rand.Intn(slots)
|
||||
r = rand.Intn(slots)
|
||||
fmt.Println("slots:", slots, "random :", r)
|
||||
vid := t.nextVolumeId()
|
||||
ret, node := t.Node.ReserveOneVolume(r,vid)
|
||||
|
Reference in New Issue
Block a user