File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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; \
You can’t perform that action at this time.
0 commit comments