Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Mar 13, 2020
1 parent e129a37 commit 0910621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bombard/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def report(self):
total_line = ' '.join([
f'Got `{total_num}` responses',
f'in `{self.pretty_time(total_ns, paint=False)}`,',
f'`{round(total_num / elapsed_sec)} op/sec`,',
f'`{round(total_num / elapsed_sec) if elapsed_sec > 0 else "\u221E"} op/sec`,',
f'{pretty_sz(size_sum)},',
f'{pretty_sz(size_sum // elapsed_sec) if elapsed_sec > 0 else 0}/sec',
f'{pretty_sz(size_sum // elapsed_sec) if elapsed_sec > 0 else "\u221E"}/sec',
])
by_group = []
for status_group in GROUPS:
Expand Down

0 comments on commit 0910621

Please sign in to comment.