Permalink
Cannot retrieve contributors at this time
88 lines (88 sloc)
4 KB
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/artifact/lib/internal/requestUtils.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.retryHttpClientRequest = exports.retry = void 0; | |
const utils_1 = require("./utils"); | |
const core = __importStar(require("@actions/core")); | |
const config_variables_1 = require("./config-variables"); | |
function retry(name, operation, customErrorMessages, maxAttempts) { | |
return __awaiter(this, void 0, void 0, function* () { | |
let response = undefined; | |
let statusCode = undefined; | |
let isRetryable = false; | |
let errorMessage = ''; | |
let customErrorInformation = undefined; | |
let attempt = 1; | |
while (attempt <= maxAttempts) { | |
try { | |
response = yield operation(); | |
statusCode = response.message.statusCode; | |
if (utils_1.isSuccessStatusCode(statusCode)) { | |
return response; | |
} | |
// Extra error information that we want to display if a particular response code is hit | |
if (statusCode) { | |
customErrorInformation = customErrorMessages.get(statusCode); | |
} | |
isRetryable = utils_1.isRetryableStatusCode(statusCode); | |
errorMessage = `Artifact service responded with ${statusCode}`; | |
} | |
catch (error) { | |
isRetryable = true; | |
errorMessage = error.message; | |
} | |
if (!isRetryable) { | |
core.info(`${name} - Error is not retryable`); | |
if (response) { | |
utils_1.displayHttpDiagnostics(response); | |
} | |
break; | |
} | |
core.info(`${name} - Attempt ${attempt} of ${maxAttempts} failed with error: ${errorMessage}`); | |
yield utils_1.sleep(utils_1.getExponentialRetryTimeInMilliseconds(attempt)); | |
attempt++; | |
} | |
if (response) { | |
utils_1.displayHttpDiagnostics(response); | |
} | |
if (customErrorInformation) { | |
throw Error(`${name} failed: ${customErrorInformation}`); | |
} | |
throw Error(`${name} failed: ${errorMessage}`); | |
}); | |
} | |
exports.retry = retry; | |
function retryHttpClientRequest(name, method, customErrorMessages = new Map(), maxAttempts = config_variables_1.getRetryLimit()) { | |
return __awaiter(this, void 0, void 0, function* () { | |
return yield retry(name, method, customErrorMessages, maxAttempts); | |
}); | |
} | |
exports.retryHttpClientRequest = retryHttpClientRequest; | |
//# sourceMappingURL=requestUtils.js.map |