Skip to content

Commit

Permalink
Convert client count to snake case for rust benchmark. (#27)
Browse files Browse the repository at this point in the history
* Updated ClientCount to client_count for uniformity for rust.
  • Loading branch information
SanHalacogluImproving authored Oct 18, 2023
1 parent 65090b4 commit 8a0449d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async fn perform_benchmark(args: Args) {
Value::Number((number_of_operations as i64 * 1000 / stopwatch.elapsed_ms()).into()),
);
results_json.insert(
"clientCount".to_string(),
"client_count".to_string(),
Value::Number(args.client_count.into()),
);
results_json.insert(
Expand Down

0 comments on commit 8a0449d

Please sign in to comment.