artifact-engine
Advanced tools
Comparing version 0.1.28 to 0.1.29
@@ -140,3 +140,3 @@ "use strict"; | ||
let MaxRetryLimitInSeconds = 360; | ||
var exponentialBackOff = baseRetryInterval * (3 ^ (retryCount + 1)); | ||
var exponentialBackOff = baseRetryInterval * Math.pow(3, (retryCount + 1)); | ||
return exponentialBackOff < MaxRetryLimitInSeconds ? exponentialBackOff : MaxRetryLimitInSeconds; | ||
@@ -143,0 +143,0 @@ } |
{ | ||
"name": "artifact-engine", | ||
"version": "0.1.28", | ||
"version": "0.1.29", | ||
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts", | ||
@@ -5,0 +5,0 @@ "repository": { |
164632