Skip to content

Commit

Permalink
Fix for #26.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Oct 17, 2023
1 parent b243d11 commit 0bf99f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static void WriteJson(
var data = new Measurements();
data.data_size = dataSize;
data.client = client;
data.clientCount = clientCount;
data.client_count = clientCount;
data.num_of_tasks = numOfTasks;
data.tps = tps;
// TODO: is_cluster
Expand Down Expand Up @@ -78,7 +78,7 @@ public static void WriteJson(
@Getter
public static class Measurements {
private String client;
private int clientCount;
private int client_count;
private int data_size;
private double get_existing_average_latency;
private double get_existing_p50_latency;
Expand Down

0 comments on commit 0bf99f9

Please sign in to comment.