diff --git a/blueprints/gke/autopilot/bundle/locust/image/locust-files/test.py b/blueprints/gke/autopilot/bundle/locust/image/locust-files/test.py index def61168..da399ad8 100644 --- a/blueprints/gke/autopilot/bundle/locust/image/locust-files/test.py +++ b/blueprints/gke/autopilot/bundle/locust/image/locust-files/test.py @@ -21,8 +21,8 @@ class TestUser(HttpUser): host = os.getenv("URL", "http://nginx.sample.svc.cluster.local") - wait_time = between(int(os.getenv('MIN_WAIT_TIME'), 1), - int(os.getenv('MAX_WAIT_TIME'), 2)) + wait_time = between(int(os.getenv('MIN_WAIT_TIME', 1)), + int(os.getenv('MAX_WAIT_TIME', 2))) @task def home(self):