Skip to content
Open
Prev Previous commit
Next Next commit
Fixed test script so it calls the correct RetryDelay
  • Loading branch information
krotte1 authored and JoaoPPinto committed Aug 24, 2021
commit 9bf2e3090fb9f1a95f44f1e1c6cdd8a30e9e7c2d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline {
agent any
options {
retry(count: 6, delay: randomExponential(max: 10, multiplier: 2), useRetryDelay: true, unit: 'SECONDS')
retry(count: 4, delay: exponential(max: 20, min: 1, multiplier: 2, unit: 'SECONDS'), useRetryDelay: true)
}
stages {
stage('x') {
Expand Down