mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-23 07:33:34 +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) {
|
func (t *Topology) RandomlyReserveOneVolume() (bool, *Node, storage.VolumeId) {
|
||||||
slots := t.Node.maxVolumeCount-t.Node.activeVolumeCount
|
slots := t.Node.maxVolumeCount-t.Node.activeVolumeCount
|
||||||
r := rand.Intn(slots)
|
r := rand.Intn(slots)
|
||||||
r = rand.Intn(slots)
|
|
||||||
fmt.Println("slots:", slots, "random :", r)
|
fmt.Println("slots:", slots, "random :", r)
|
||||||
vid := t.nextVolumeId()
|
vid := t.nextVolumeId()
|
||||||
ret, node := t.Node.ReserveOneVolume(r,vid)
|
ret, node := t.Node.ReserveOneVolume(r,vid)
|
||||||
|
Reference in New Issue
Block a user