Skip to content

Commit

Permalink
Increase Socket Timeout on Pipeline Orchestrator 4x (#783)
Browse files Browse the repository at this point in the history
increase socket timeout to 10minutes
  • Loading branch information
segator authored Nov 18, 2021
1 parent 142a171 commit 0deb68e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Unreleased
- Increase Socket Timeout on Pipeline Orchestrator (https://github.com/opendevstack/ods-jenkins-shared-library/pull/781)

## [4.0] - 2021-05-11
- While deploying on Qa with 1 bug, 3 bugs are reported instead of 1 (https://github.com/opendevstack/ods-jenkins-shared-library/pull/757)
Expand Down
4 changes: 2 additions & 2 deletions vars/odsOrchestrationPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import org.ods.util.PipelineSteps
@SuppressWarnings('AbcMetric')
def call(Map config) {
Unirest.config()
.socketTimeout(1200000)
.connectTimeout(120000)
.socketTimeout(6000000)
.connectTimeout(600000)

def steps = new PipelineSteps(this)

Expand Down

0 comments on commit 0deb68e

Please sign in to comment.