Skip to content

Commit

Permalink
[incubator-kie-issues-1444] drools.weekly-deploy jobs frequently fail…
Browse files Browse the repository at this point in the history
… with Request Timeout (408) (#6049)
  • Loading branch information
tkobayas authored Aug 23, 2024
1 parent 4b09cca commit 20d20f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .ci/jenkins/Jenkinsfile.weekly.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ 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 -DdeployAtEnd -Dapache.repository.username=${REPOSITORY_USER} -Dapache.repository.password=${REPOSITORY_TOKEN} -DretryFailedDeploymentCount=5" +
" -Dhttp.socket.timeout=300000 -Dhttp.connection.timeout=300000"
} else {
installOrDeploy = 'install'
}
Expand Down

0 comments on commit 20d20f7

Please sign in to comment.