This commit is contained in:
Akhil 2026-08-01 14:16:42 +03:00 committed by GitHub
commit f2cb7ccb67
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;
}
}