diff --git a/weed/shell/command_volume_balance.go b/weed/shell/command_volume_balance.go index 33ae9344d..e0c41f310 100644 --- a/weed/shell/command_volume_balance.go +++ b/weed/shell/command_volume_balance.go @@ -201,7 +201,7 @@ type CapacityFunc func(*master_pb.DataNodeInfo) int func capacityByMaxVolumeCount(diskType types.DiskType) CapacityFunc { return func(info *master_pb.DataNodeInfo) int { - diskInfo, found := info.DiskInfos[diskType.ReadableString()] + diskInfo, found := info.DiskInfos[string(diskType)] if !found { return 0 }