diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-06-16 23:07:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 23:07:40 -0700 |
commit | 49e945ed082bacd5cd5ecff305ec47ff3a00f1c5 (patch) | |
tree | d08d3092b523af019d717266d5e157434196c9ae | |
parent | 3c854e8c24b394900dc65df680b7679f09cee97c (diff) | |
download | Nim-49e945ed082bacd5cd5ecff305ec47ff3a00f1c5.tar.gz |
increase backoffDuration to avoid timeouts (#18281)
-rw-r--r-- | testament/categories.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 7f05797ff..bf7855b2c 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -429,7 +429,7 @@ proc testNimblePackages(r: var TResults; cat: Category; packageFilter: string) = let buildPath = packagesDir / pkg.name template tryCommand(cmd: string, workingDir2 = buildPath, reFailed = reInstallFailed, maxRetries = 1): string = var outp: string - let ok = retryCall(maxRetry = maxRetries, backoffDuration = 1.0): + let ok = retryCall(maxRetry = maxRetries, backoffDuration = 10.0): var status: int (outp, status) = execCmdEx(cmd, workingDir = workingDir2) status == QuitSuccess |