From: Peter Amstutz Date: Tue, 8 Nov 2022 18:31:53 +0000 (-0500) Subject: 19699: Pass through --varying-url-params to runner container X-Git-Tag: 2.5.0~37^2~1 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/878ec61b535740ebeb40dcc4a330557698c66417 19699: Pass through --varying-url-params to runner container Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- diff --git a/sdk/cwl/arvados_cwl/arvcontainer.py b/sdk/cwl/arvados_cwl/arvcontainer.py index 57ab7367a3..b0ef4a22cc 100644 --- a/sdk/cwl/arvados_cwl/arvcontainer.py +++ b/sdk/cwl/arvados_cwl/arvcontainer.py @@ -604,6 +604,9 @@ class RunnerContainer(Runner): if runtimeContext.enable_preemptible is False: command.append("--disable-preemptible") + if runtimeContext.varying_url_params: + command.append("--varying-url-params="+runtimeContext.varying_url_params) + command.extend([workflowpath, "/var/lib/cwl/cwl.input.json"]) container_req["command"] = command