diff options
| author | chrislu <chris.lu@gmail.com> | 2023-09-18 16:12:50 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-09-18 16:12:50 -0700 |
| commit | 8cb42c39adbbe7f082009cf91eccb4d2dc527235 (patch) | |
| tree | a4a54f1e1211e273bede5ecc39ed9513316c596d /weed/shell/command_volume_check_disk.go | |
| parent | 2e5aa06026750c99ea283181974d2ccfe5eb0468 (diff) | |
| download | seaweedfs-8cb42c39adbbe7f082009cf91eccb4d2dc527235.tar.xz seaweedfs-8cb42c39adbbe7f082009cf91eccb4d2dc527235.zip | |
Revert "Merge branch 'master' of https://github.com/seaweedfs/seaweedfs"
This reverts commit 2e5aa06026750c99ea283181974d2ccfe5eb0468, reversing
changes made to 4d414f54a224142f3f4d934f4af3b5dceb6fec6b.
Diffstat (limited to 'weed/shell/command_volume_check_disk.go')
| -rw-r--r-- | weed/shell/command_volume_check_disk.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_volume_check_disk.go b/weed/shell/command_volume_check_disk.go index 43a4b26ca..6a1634f8a 100644 --- a/weed/shell/command_volume_check_disk.go +++ b/weed/shell/command_volume_check_disk.go @@ -80,8 +80,8 @@ func (c *commandVolumeCheckDisk) Do(args []string, commandEnv *CommandEnv, write if *volumeId > 0 && replicas[0].info.Id != uint32(*volumeId) { continue } - slices.SortFunc(replicas, func(a, b *VolumeReplica) int { - return int(fileCount(b) - fileCount(a)) + slices.SortFunc(replicas, func(a, b *VolumeReplica) bool { + return fileCount(a) > fileCount(b) }) for len(replicas) >= 2 { a, b := replicas[0], replicas[1] |
