From 57e5dd05f6d2da4799c87bec3e03166ee3eb7d61 Mon Sep 17 00:00:00 2001 From: Yaron Kaikov Date: Tue, 26 Nov 2024 06:42:56 +0200 Subject: [PATCH] fix(docker-artifacts-test): add missing `,` between params In https://github.com/scylladb/scylla-cluster-tests/pull/9353 a new parameter was added, but a missing `,` is failing the pipeline fixing it --- jenkins-pipelines/oss/artifacts/artifacts-docker.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-pipelines/oss/artifacts/artifacts-docker.jenkinsfile b/jenkins-pipelines/oss/artifacts/artifacts-docker.jenkinsfile index 1c104bf248..44aacab3f5 100644 --- a/jenkins-pipelines/oss/artifacts/artifacts-docker.jenkinsfile +++ b/jenkins-pipelines/oss/artifacts/artifacts-docker.jenkinsfile @@ -8,7 +8,7 @@ artifactsPipeline( backend: 'docker', timeout: [time: 30, unit: 'MINUTES'], - post_behavior_db_nodes: 'destroy' + post_behavior_db_nodes: 'destroy', extra_environment_variables: 'SCT_USE_MGMT=false' )