Skip to content

Commit

Permalink
console res
Browse files Browse the repository at this point in the history
  • Loading branch information
Apple authored and Apple committed Mar 31, 2022
1 parent a54eb92 commit fa608b2
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 33 deletions.
33 changes: 18 additions & 15 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3278,9 +3278,11 @@ function reserveCache(key, paths, options) {
version,
cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize
};
const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
const response = yield requestUtils_1.retryHttpClientResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.post(getCacheApiUrl('caches'), JSON.stringify(reserveCacheRequest));
}));
console.log("\n\nResponse\n\n");
console.log(response);
return response;
});
}
Expand Down Expand Up @@ -46426,7 +46428,6 @@ exports.restoreCache = restoreCache;
* @returns number returns cacheId if the cache was saved successfully and throws an error if save fails
*/
function saveCache(paths, key, options) {
var _a, _b;
return __awaiter(this, void 0, void 0, function* () {
checkPaths(paths);
checkKey(key);
Expand All @@ -46451,16 +46452,20 @@ function saveCache(paths, key, options) {
compressionMethod,
cacheSize
});
console.log(reserveCacheResponse);
if ((reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.statusCode) === 400) {
throw new ReserveCacheError(`Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`);
}
if ((_a = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _a === void 0 ? void 0 : _a.cacheId) {
cacheId = (_b = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _b === void 0 ? void 0 : _b.cacheId;
}
else {
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
}
// if(reserveCacheResponse?.statusCode === 400 && reserveCacheResponse?.result?.typeKey === "InvalidReserveCacheRequestException"){
// throw new ReserveCacheError(
// reserveCacheResponse?.result?.message ??
// `Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`
// )
// }
// if(reserveCacheResponse?.result?.cacheId){
// cacheId = reserveCacheResponse?.result?.cacheId
// }else{
// throw new ReserveCacheError(
// `Unable to reserve cache with key ${key}, another job may be creating this cache.`
// )
// }
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
core.debug(`Cache ID: ${cacheId}`);
core.debug(`Saving Cache (ID: ${cacheId})`);
yield cacheHttpClient.saveCache(cacheId, archivePath, options);
Expand Down Expand Up @@ -51558,8 +51563,6 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry
// an ITypedResponse<T> so it can be processed by the retry logic.
(error) => {
if (error instanceof http_client_1.HttpClientError) {
console.log("\n\nRESULT\n\n");
console.log(error.result);
return {
statusCode: error.statusCode,
result: null,
Expand Down
33 changes: 18 additions & 15 deletions dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3278,9 +3278,11 @@ function reserveCache(key, paths, options) {
version,
cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize
};
const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
const response = yield requestUtils_1.retryHttpClientResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.post(getCacheApiUrl('caches'), JSON.stringify(reserveCacheRequest));
}));
console.log("\n\nResponse\n\n");
console.log(response);
return response;
});
}
Expand Down Expand Up @@ -46520,7 +46522,6 @@ exports.restoreCache = restoreCache;
* @returns number returns cacheId if the cache was saved successfully and throws an error if save fails
*/
function saveCache(paths, key, options) {
var _a, _b;
return __awaiter(this, void 0, void 0, function* () {
checkPaths(paths);
checkKey(key);
Expand All @@ -46545,16 +46546,20 @@ function saveCache(paths, key, options) {
compressionMethod,
cacheSize
});
console.log(reserveCacheResponse);
if ((reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.statusCode) === 400) {
throw new ReserveCacheError(`Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`);
}
if ((_a = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _a === void 0 ? void 0 : _a.cacheId) {
cacheId = (_b = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _b === void 0 ? void 0 : _b.cacheId;
}
else {
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
}
// if(reserveCacheResponse?.statusCode === 400 && reserveCacheResponse?.result?.typeKey === "InvalidReserveCacheRequestException"){
// throw new ReserveCacheError(
// reserveCacheResponse?.result?.message ??
// `Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`
// )
// }
// if(reserveCacheResponse?.result?.cacheId){
// cacheId = reserveCacheResponse?.result?.cacheId
// }else{
// throw new ReserveCacheError(
// `Unable to reserve cache with key ${key}, another job may be creating this cache.`
// )
// }
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
core.debug(`Cache ID: ${cacheId}`);
core.debug(`Saving Cache (ID: ${cacheId})`);
yield cacheHttpClient.saveCache(cacheId, archivePath, options);
Expand Down Expand Up @@ -51561,8 +51566,6 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry
// an ITypedResponse<T> so it can be processed by the retry logic.
(error) => {
if (error instanceof http_client_1.HttpClientError) {
console.log("\n\nRESULT\n\n");
console.log(error.result);
return {
statusCode: error.statusCode,
result: null,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "file:actions-cache-2.4.0.tgz",
"@actions/cache": "file:actions-cache-2.5.0.tgz",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2"
Expand Down

0 comments on commit fa608b2

Please sign in to comment.