From 13ec80b710b5ba4786842e0c585b892d04f7571a Mon Sep 17 00:00:00 2001 From: Jan Smejkal Date: Mon, 16 Sep 2024 15:50:33 +0200 Subject: [PATCH] fix(locust args): Fix syntax - missing comma --- opl/args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opl/args.py b/opl/args.py index 0e0771f..cfc520d 100644 --- a/opl/args.py +++ b/opl/args.py @@ -316,7 +316,7 @@ def add_locust_opts(parser): ) parser.add_argument( "--locust-wait-for-worker-timeout", - dest="worker_wait_timeout" + dest="worker_wait_timeout", type=int, default=int(os.getenv("LOCUST_WAIT_FOR_WORKER_TIMEOUT", 120)), help="Locust timeout [s] for waiting until worker pods are ready. (also use env variable LOCUST_WAIT_FOR_WORKER_TIMEOUT)",