Mike Nester
Mike Nester
Whoops! Yeah i'll take a look asap
I think this is happening when `/swarm` [updates environment.parsed_options](https://github.com/locustio/locust/blob/master/locust/web.py#L198). I'll try to get a fix in today or tomorrow
@cyberw @Vino4 is the expected behavior on this issue correct? If I have the following in a file called `locustfiles/locustfile1.py` ```python from locust import HttpUser, task, between, events @events.test_start.add_listener def...
@cyberw Any thoughts on the above ^ ?
I have a PR open with the fix: https://github.com/locustio/locust/pull/2201
I was getting a similar error when (incorrectly) trying to pass in multiple locustfiles, separated by spaces instead of commas Running: `locust -f locustfiles/locustfile1.py locustfiles/more/locustfile2.py` Caused: `ERROR/locust.main: Unknown User(s): locustfiles/more/locustfiles2.py`...
What I'm thinking could be a fix here is, in `docker-compose.yml`, instead of this: ``` services: master: image: locustio/locust ports: - "8089:8089" volumes: - /home/load-test/locust:/mnt/locust command: -f /mnt/locust/${LOCUST_FILE} \ -H...