Skip to content

Commit 8a89c23

Browse files
committed
replacing
1 parent 70463ab commit 8a89c23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/performance/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ define create_locust_config
3838
@if [ ! -f $(LOCUST_CONFIG_FILE) ]; then \
3939
printf "$(YELLOW)First time setup: Creating Locust configuration file$(NC)\n"; \
4040
printf "Available locust files in locustfiles/:\n"; \
41-
find locustfiles -type f -name '*.py' ! -name '__init__.py' -printf ' %p\n'; \
42-
find locustfiles -type f -name 'workflow.py' -printf ' %p\n'; \
41+
find locustfiles -maxdepth 1 -type f -name '*.py' ! -name '__init__.py' -printf ' %p\n'; \
42+
find locustfiles -mindepth 2 -type f -name 'workflow.py' -printf ' %p\n'; \
4343
read -p "Locust file to use [./locustfiles/deployment_max_rps_single_endpoint.py]: " locustfile; \
4444
locustfile=$${locustfile:-./locustfiles/deployment_max_rps_single_endpoint.py}; \
4545
read -p "Number of processes [$(DEFAULT_PROCESSES)]: " processes; \

0 commit comments

Comments
 (0)