From 4747ecb20e0ef9fc3828d04e76c9ec7418054fd2 Mon Sep 17 00:00:00 2001 From: Tarun Menon Date: Fri, 12 Jul 2024 11:50:46 +1000 Subject: [PATCH] change slave ref to worker --- locust-distributed/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locust-distributed/docker-entrypoint.sh b/locust-distributed/docker-entrypoint.sh index 9cd3d5c..b8d3e03 100755 --- a/locust-distributed/docker-entrypoint.sh +++ b/locust-distributed/docker-entrypoint.sh @@ -23,7 +23,7 @@ case `echo ${LOCUST_MODE} | tr 'a-z' 'A-Z'` in LOCUST_OPTS="--master --master-bind-port=${LOCUST_MASTER_BIND_PORT} $LOCUST_OPTS" ;; -"SLAVE") +"WORKER") LOCUST_OPTS="--worker --master-host=${LOCUST_MASTER} --master-port=${LOCUST_MASTER_BIND_PORT} $LOCUST_OPTS" echo "Options: ${LOCUST_OPTS}" if [ -z ${LOCUST_MASTER+x} ] ; then