Skip to content

Commit

Permalink
Increase chocolatey publish retries (#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed Jul 12, 2023
1 parent ca4364b commit eafc78c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,9 @@ def publishNpmPackage(jfrogCliRepoDir) {
}

def publishChocoPackageWithRetries(version, jfrogCliRepoDir, architectures) {
def maxAttempts = 3
def maxAttempts = 10
def currentAttempt = 1
def waitSeconds = 20
def waitSeconds = 18

while (currentAttempt <= maxAttempts) {
try {
Expand Down

0 comments on commit eafc78c

Please sign in to comment.