Skip to content

Commit

Permalink
fix(locust args): Fix syntax - missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Smejky338 committed Sep 16, 2024
1 parent 20b988e commit 13ec80b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opl/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down

0 comments on commit 13ec80b

Please sign in to comment.