mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-11 18:20:24 +09:00
fix: ci
This commit is contained in:
parent
f4b4ed919f
commit
d143730587
3 changed files with 3 additions and 1 deletions
1
dist/index.js
generated
vendored
1
dist/index.js
generated
vendored
|
@ -88172,6 +88172,7 @@ function getCacheClient() {
|
|||
if (status === 409) {
|
||||
return { success: false };
|
||||
}
|
||||
core.info(`Cache create response: ${status} ${statusText}: ${data}`);
|
||||
const buildedError = new HandledError(status, statusText, data);
|
||||
return handleFetchError('Unable to reserve cache')(buildedError);
|
||||
}
|
||||
|
|
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
1
src/lib/cache/utils.ts
vendored
1
src/lib/cache/utils.ts
vendored
|
@ -56,6 +56,7 @@ export function getCacheClient() {
|
|||
if (status === 409) {
|
||||
return { success: false }
|
||||
}
|
||||
core.info(`Cache create response: ${status} ${statusText}: ${data}`)
|
||||
const buildedError = new HandledError(status, statusText, data)
|
||||
return handleFetchError('Unable to reserve cache')(buildedError)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue