This commit is contained in:
Akhil 2026-07-29 13:36:21 +08:00 committed by GitHub
commit 4bc600dae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -74,13 +74,13 @@ public class StatsKeyspace
{
return readCount > 0
? totalReadTime / readCount / 1000
: Double.NaN;
: 0;
}
public double writeLatency()
{
return writeCount > 0
? totalWriteTime / writeCount / 1000
: Double.NaN;
: 0;
}
}