output retryafter for secondary rate limit
This commit is contained in:
parent
fd3e742ffd
commit
66ddf90dac
2 changed files with 4 additions and 2 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -1498,8 +1498,9 @@ exports.throttleOptions = {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onSecondaryRateLimit: (_, options) => {
|
onSecondaryRateLimit: (retryAfter, options) => {
|
||||||
core.warning(`Hit secondary rate limit for request ${options.method} ${options.url}`);
|
core.warning(`Hit secondary rate limit for request ${options.method} ${options.url}`);
|
||||||
|
core.warning(`Requests may be retried after ${retryAfter} seconds.`);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const proxyFetch = (proxyUrl) => (url, opts) => {
|
const proxyFetch = (proxyUrl) => (url, opts) => {
|
||||||
|
|
|
@ -25,10 +25,11 @@ export const throttleOptions = {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onSecondaryRateLimit: (_, options) => {
|
onSecondaryRateLimit: (retryAfter, options) => {
|
||||||
core.warning(
|
core.warning(
|
||||||
`Hit secondary rate limit for request ${options.method} ${options.url}`
|
`Hit secondary rate limit for request ${options.method} ${options.url}`
|
||||||
)
|
)
|
||||||
|
core.warning(`Requests may be retried after ${retryAfter} seconds.`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue