From 17256a76b9ecb0f5c4c0b63ab20b9d93d20ba4d9 Mon Sep 17 00:00:00 2001 From: Toshiya Kobayashi Date: Mon, 9 Sep 2024 14:34:09 +0900 Subject: [PATCH] [incubator-kie-issues-1444-weekly] drools.weekly-deploy jobs frequently fail with Request Timeout (408) (#6056) - Disable deployAtEnd --- .ci/jenkins/Jenkinsfile.weekly.deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/jenkins/Jenkinsfile.weekly.deploy b/.ci/jenkins/Jenkinsfile.weekly.deploy index 274d11e3023..46690fffc44 100644 --- a/.ci/jenkins/Jenkinsfile.weekly.deploy +++ b/.ci/jenkins/Jenkinsfile.weekly.deploy @@ -91,7 +91,7 @@ pipeline { withCredentials([usernamePassword(credentialsId: env.MAVEN_REPO_CREDS_ID, usernameVariable: 'REPOSITORY_USER', passwordVariable: 'REPOSITORY_TOKEN')]) { def installOrDeploy if (shouldDeployToRepository()) { - installOrDeploy = "deploy -DdeployAtEnd -Dapache.repository.username=${REPOSITORY_USER} -Dapache.repository.password=${REPOSITORY_TOKEN} -DretryFailedDeploymentCount=5" + + installOrDeploy = "deploy -Dapache.repository.username=${REPOSITORY_USER} -Dapache.repository.password=${REPOSITORY_TOKEN} -DretryFailedDeploymentCount=5" + " -Daether.connector.basic.parallelPut=false" } else { installOrDeploy = 'install'