From 04081128a915d6042f809623835e10fff69d69e5 Mon Sep 17 00:00:00 2001 From: chrislu Date: Thu, 21 Nov 2024 08:54:03 -0800 Subject: [PATCH] use math rand v2 --- weed/shell/command_ec_common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/shell/command_ec_common.go b/weed/shell/command_ec_common.go index 6e7ad7e43..7328fffe7 100644 --- a/weed/shell/command_ec_common.go +++ b/weed/shell/command_ec_common.go @@ -3,7 +3,7 @@ package shell import ( "context" "fmt" - "math/rand" + "math/rand/v2" "github.com/seaweedfs/seaweedfs/weed/glog" "github.com/seaweedfs/seaweedfs/weed/operation" @@ -564,7 +564,7 @@ func pickRackToBalanceShardsInto(rackToEcNodes map[RackId]*EcRack, rackToShardCo if len(targets) == 0 { return "" } - return targets[rand.Intn(len(targets))] + return targets[rand.IntN(len(targets))] } func balanceEcShardsWithinRacks(commandEnv *CommandEnv, allEcNodes []*EcNode, racks map[RackId]*EcRack, collection string, applyBalancing bool) error {