Skip to content

Commit

Permalink
- Fix for DemicalFormatException caused due to grouping in double num…
Browse files Browse the repository at this point in the history
…ber. (#120)

- Fix for DemicalFormatException caused due to grouping in double number. (#120)
  • Loading branch information
sonalsagarwal authored Sep 8, 2021
1 parent 4440767 commit 597e258
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/com/oltpbenchmark/DBWorkload.java
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ private static void PrintToplineResults(List<Worker> workers, Results r) {
String.format("%18s | %17.2f%%\n", "Efficiency", efficiency) +
String.format("%18s | %18.2f\n", "Throughput (req/s)", r.getRequestsPerSecond());
LOG.info(resultOut);
df.setGroupingUsed(false);
jsonMetricsHelper.setTestResults(df.format(tpmc), df.format(efficiency),
df.format(r.getRequestsPerSecond()));
}
Expand Down

0 comments on commit 597e258

Please sign in to comment.