percent stats 0-1 -> 0-100 (#21028)

This commit is contained in:
Jeff Washington (jwash) 2021-10-27 18:08:27 -05:00 committed by GitHub
parent 700e42d556
commit 6a1ff60c61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ impl BucketMapHolderStats {
if elapsed_ms == 0 {
0.0
} else {
ms as f32 / elapsed_ms as f32
(ms as f32 / elapsed_ms as f32) * 100.0
}
}