-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "stopping" state. Fixes issue of load rebalancing and restarting …
…when trying to stop a distributed load and slaves rejoin.
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .core import HttpLocust, Locust, TaskSet, TaskSequence, task, seq_task | ||
from .exception import InterruptTaskSet, ResponseError, RescheduleTaskImmediately | ||
|
||
__version__ = "0.11.0" | ||
__version__ = "0.11.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8b17c28
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd really appreciate this code being released on Pypi. 0.11.0 is currently on Pypi and I'm having to kill all of my slave instances and re-spin them up after every test to ensure they won't start testing again. I get the feeling that my slave machines loose connectivity and even after the test has finished (stop_timeout reached) they rejoin and start up again.
I'm having to roll back to 0.9.0 for my next set of tests, as version 0.10.0 doesn't seem to work on my system.