aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_ec_balance.go
diff options
context:
space:
mode:
authorRyan Russell <ryanrussell@users.noreply.github.com>2022-09-14 14:06:48 -0500
committerGitHub <noreply@github.com>2022-09-14 12:06:48 -0700
commitbd2dc6d641a40895ef1675405212ca5e6e297fd4 (patch)
tree9dd3f25960525bb29511faf223f9d7d2eba8e45e /weed/shell/command_ec_balance.go
parentdfbd8efd26891d6ef07928b1bab2ec65809c585e (diff)
downloadseaweedfs-bd2dc6d641a40895ef1675405212ca5e6e297fd4.tar.xz
seaweedfs-bd2dc6d641a40895ef1675405212ca5e6e297fd4.zip
refactor(shell): `Decending` -> `Descending` (#3675)
Signed-off-by: Ryan Russell <git@ryanrussell.org> Signed-off-by: Ryan Russell <git@ryanrussell.org>
Diffstat (limited to 'weed/shell/command_ec_balance.go')
-rw-r--r--weed/shell/command_ec_balance.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_ec_balance.go b/weed/shell/command_ec_balance.go
index 2267f8cf0..bc322f8fe 100644
--- a/weed/shell/command_ec_balance.go
+++ b/weed/shell/command_ec_balance.go
@@ -453,7 +453,7 @@ func doBalanceEcRack(commandEnv *CommandEnv, ecRack *EcRack, applyBalancing bool
func pickOneEcNodeAndMoveOneShard(commandEnv *CommandEnv, averageShardsPerEcNode int, existingLocation *EcNode, collection string, vid needle.VolumeId, shardId erasure_coding.ShardId, possibleDestinationEcNodes []*EcNode, applyBalancing bool) error {
- sortEcNodesByFreeslotsDecending(possibleDestinationEcNodes)
+ sortEcNodesByFreeslotsDescending(possibleDestinationEcNodes)
for _, destEcNode := range possibleDestinationEcNodes {
if destEcNode.info.Id == existingLocation.info.Id {