refactor to change capacity data type

This commit is contained in:
chrislu
2022-10-09 18:58:10 -07:00
parent 0f522da367
commit f9383aa726
2 changed files with 9 additions and 13 deletions

View File

@@ -282,10 +282,6 @@ func mountEcShards(grpcDialOption grpc.DialOption, collection string, volumeId n
})
}
func divide(total, n int) float64 {
return float64(total) / float64(n)
}
func ceilDivide(total, n int) int {
return int(math.Ceil(float64(total) / float64(n)))
}