You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using boomer client to write my slave and master is having a dummy python file:
from locust import Locust, TaskSet, task
class DummyTaskSet(TaskSet):
@task()
def dummy_pass(self):
pass
class Dummy(Locust):
task_set = DummyTaskSet
However if my slave crashed, or I kill it from terminal the master still shows the slave connected.
Expected behavior
The locust master should mark the slave as gone, but it keeps pilling up. I believe it will impact my test as the load will be distributed between slaves which are non existent
Description of issue / feature request
I am using boomer client to write my slave and master is having a dummy python file:
from locust import Locust, TaskSet, task
However if my slave crashed, or I kill it from terminal the master still shows the slave connected.
Expected behavior
The locust master should mark the slave as gone, but it keeps pilling up. I believe it will impact my test as the load will be distributed between slaves which are non existent
Actual behavior
The locust master doesn't remove killed slave
Environment settings (for bug reports)
Running in Docker with following:-
Steps to reproduce (for bug reports)
Already shared the Dockerfile and dummy locust file above. Following is my run file
I have to clean up my slave code as I am underway to make it opensource, but an example from the author will work out of the box.
I think it is a locust master issue as no matter what happened with my slave, master should check with heartbeats that which slave is up?
Thanks,
The text was updated successfully, but these errors were encountered: