Skip to content

Commit

Permalink
Users stopped text will display how many still running.
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisKrone committed Nov 13, 2020
1 parent 85a8928 commit 3750cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locust/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def stop_users(self, user_count, stop_rate=None):
)
stop_group.kill(block=True)

logger.info("%i Users have been stopped" % user_count)
logger.info("%i Users have been stopped, %g still running" % (user_count, len(self.user_greenlets)))

def monitor_cpu(self):
process = psutil.Process()
Expand Down

0 comments on commit 3750cbe

Please sign in to comment.