Skip to content

Commit

Permalink
Fix all active throughput calculation (#5526)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Aug 9, 2023
1 parent 97cda13 commit c7df1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/infra/basicperf.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def table():
pl.col("receiveTime") < earliest_end
)
all_active_duration_s = (earliest_end - latest_start).total_seconds()
all_active_throughput = len(agg_all_active) / duration_s
all_active_throughput = len(agg_all_active) / all_active_duration_s
statistics[
"all_clients_active_average_throughput_tx/s"
] = all_active_throughput
Expand Down

0 comments on commit c7df1e1

Please sign in to comment.