From d36ea963a8d0c7a7d373e7efde1dac427dbdfe76 Mon Sep 17 00:00:00 2001 From: SanHalacogluImproving Date: Mon, 16 Oct 2023 16:03:40 -0700 Subject: [PATCH] Updated ClientCount to client_count for uniformity. --- benchmarks/utilities/csv_exporter.py | 2 +- go/benchmarks/benchmark.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/utilities/csv_exporter.py b/benchmarks/utilities/csv_exporter.py index e2a83e6811..5471c02adb 100644 --- a/benchmarks/utilities/csv_exporter.py +++ b/benchmarks/utilities/csv_exporter.py @@ -12,7 +12,7 @@ "is_cluster", "num_of_tasks", "data_size", - "clientCount", + "client_count", "tps", "get_non_existing_p50_latency", "get_non_existing_p90_latency", diff --git a/go/benchmarks/benchmark.go b/go/benchmarks/benchmark.go index a5aa86e1e2..47f72e8ef7 100644 --- a/go/benchmarks/benchmark.go +++ b/go/benchmarks/benchmark.go @@ -240,7 +240,7 @@ func AddResultsJsonFormat(benchmarkConfig *BenchmarkConfig, results map[string]l jsonResult["is_cluster"] = benchmarkConfig.IsCluster jsonResult["num_of_tasks"] = benchmarkConfig.TasksCount jsonResult["data_size"] = benchmarkConfig.DataSize - jsonResult["clientCount"] = benchmarkConfig.ClientCount + jsonResult["client_count"] = benchmarkConfig.ClientCount jsonResult["tps"] = tps for key, value := range results {