Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@actions/tool-cache/lib/retry-helper.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
83 lines (83 sloc)
3.35 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | |
if (k2 === undefined) k2 = k; | |
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | |
}) : (function(o, m, k, k2) { | |
if (k2 === undefined) k2 = k; | |
o[k2] = m[k]; | |
})); | |
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | |
Object.defineProperty(o, "default", { enumerable: true, value: v }); | |
}) : function(o, v) { | |
o["default"] = v; | |
}); | |
var __importStar = (this && this.__importStar) || function (mod) { | |
if (mod && mod.__esModule) return mod; | |
var result = {}; | |
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | |
__setModuleDefault(result, mod); | |
return result; | |
}; | |
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | |
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | |
return new (P || (P = Promise))(function (resolve, reject) { | |
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | |
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | |
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | |
step((generator = generator.apply(thisArg, _arguments || [])).next()); | |
}); | |
}; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.RetryHelper = void 0; | |
const core = __importStar(require("@actions/core")); | |
/** | |
* Internal class for retries | |
*/ | |
class RetryHelper { | |
constructor(maxAttempts, minSeconds, maxSeconds) { | |
if (maxAttempts < 1) { | |
throw new Error('max attempts should be greater than or equal to 1'); | |
} | |
this.maxAttempts = maxAttempts; | |
this.minSeconds = Math.floor(minSeconds); | |
this.maxSeconds = Math.floor(maxSeconds); | |
if (this.minSeconds > this.maxSeconds) { | |
throw new Error('min seconds should be less than or equal to max seconds'); | |
} | |
} | |
execute(action, isRetryable) { | |
return __awaiter(this, void 0, void 0, function* () { | |
let attempt = 1; | |
while (attempt < this.maxAttempts) { | |
// Try | |
try { | |
return yield action(); | |
} | |
catch (err) { | |
if (isRetryable && !isRetryable(err)) { | |
throw err; | |
} | |
core.info(err.message); | |
} | |
// Sleep | |
const seconds = this.getSleepAmount(); | |
core.info(`Waiting ${seconds} seconds before trying again`); | |
yield this.sleep(seconds); | |
attempt++; | |
} | |
// Last attempt | |
return yield action(); | |
}); | |
} | |
getSleepAmount() { | |
return (Math.floor(Math.random() * (this.maxSeconds - this.minSeconds + 1)) + | |
this.minSeconds); | |
} | |
sleep(seconds) { | |
return __awaiter(this, void 0, void 0, function* () { | |
return new Promise(resolve => setTimeout(resolve, seconds * 1000)); | |
}); | |
} | |
} | |
exports.RetryHelper = RetryHelper; | |
//# sourceMappingURL=retry-helper.js.map |