diff --git a/docker/docker-compose-manual-binaries.yml b/docker/docker-compose-manual-binaries.yml index 1276bf0..180a0d2 100644 --- a/docker/docker-compose-manual-binaries.yml +++ b/docker/docker-compose-manual-binaries.yml @@ -121,6 +121,7 @@ services: - ./run_waku_store_query_maker.sh:/opt/run_waku_store_query_maker.sh:Z environment: STORE_QUERIES_PER_SECOND: 1 + NUM_CONCURRENT_USERS: 1 networks: - simulation diff --git a/docker/run_waku_store_query_maker.sh b/docker/run_waku_store_query_maker.sh index 31fb439..4f874e4 100755 --- a/docker/run_waku_store_query_maker.sh +++ b/docker/run_waku_store_query_maker.sh @@ -59,4 +59,4 @@ exec /main\ --peer-store-postgres-addr="${POSTGRES_ADDR}"\ --peer-store-sqlite-addr="${SQLITE_ADDR}"\ --num-minutes-query=60\ - --num-concurrent-users=1 + --num-concurrent-users=${NUM_CONCURRENT_USERS}