Skip to content

Commit

Permalink
Updated ClientCount to client_count for uniformity.
Browse files Browse the repository at this point in the history
  • Loading branch information
SanHalacogluImproving authored Oct 17, 2023
1 parent 22a287c commit 65090b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion benchmarks/csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ int num_of_concurrent_tasks
{"num_of_tasks", num_of_concurrent_tasks},
{"data_size", data_size},
{"tps", tps},
{"clientCount", clients.Length},
{"client_count", clients.Length},
{"is_cluster", "false"}
};
result = result
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/node/node_benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async function run_clients(
num_of_tasks: num_of_concurrent_tasks,
data_size,
tps,
clientCount: clients.length,
client_count: clients.length,
is_cluster,
...set_latency_results,
...get_existing_latency_results,
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/python/python_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def run_clients(
"num_of_tasks": num_of_concurrent_tasks,
"data_size": data_size,
"tps": tps,
"clientCount": len(clients),
"client_count": len(clients),
"is_cluster": is_cluster,
},
**get_existing_latency_results,
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/utilities/csv_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 65090b4

Please sign in to comment.