Skip to content

Commit

Permalink
these were already rates
Browse files Browse the repository at this point in the history
  • Loading branch information
brayniac committed Oct 15, 2023
1 parent c7808b7 commit 756d6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/output/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ fn client_stats(snapshot: &mut MetricsSnapshot, elapsed: f64) {
);
output!(
"Client Request Rate (/s): Ok: {:.2} Unsupported: {:.2}",
request_ok / elapsed,
request_unsupported / elapsed,
request_ok,
request_unsupported,
);

let response_total = response_ok + response_ex + response_timeout;
Expand Down

0 comments on commit 756d6ea

Please sign in to comment.