Skip to content

Commit

Permalink
Users spawned message now shows total instead of previous.
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisKrone committed Nov 13, 2020
1 parent 3750cbe commit 83e1286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions locust/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ def spawn():
while True:
if not bucket:
logger.info(
"All users spawned: %s (%i already running)"
"All users spawned: %s (%i total running)"
% (
", ".join(["%s: %d" % (name, count) for name, count in occurrence_count.items()]),
existing_count,
len(self.user_greenlets),
)
)
self.environment.events.spawning_complete.fire(user_count=len(self.user_greenlets))
Expand Down

0 comments on commit 83e1286

Please sign in to comment.