This commit is contained in:
Rob Herley 2023-12-06 18:20:01 -05:00
parent d48048aac5
commit 7aec5deb0e
No known key found for this signature in database
GPG Key ID: D1602042C3543B06

7
dist/index.js vendored
View File

@ -5646,8 +5646,13 @@ class ArtifactHttpClient {
'Content-Type': contentType
};
try {
const response = yield this.retryableRequest(() => __awaiter(this, void 0, void 0, function* () { return this.httpClient.post(url, JSON.stringify(data), headers); }));
// const response = await this.retryableRequest(async () =>
const response = yield this.httpClient.post(url, JSON.stringify(data), headers);
const body = yield response.readBody();
(0, core_1.debug)(`[Response] ${body}`);
if (response.message.statusCode !== 200) {
throw new Error(`Non-200: ${response.message.statusCode}`);
}
return JSON.parse(body);
}
catch (error) {