[CI] test built
This commit is contained in:
parent
e60c9f9016
commit
7eee7a7e06
2 changed files with 6 additions and 2 deletions
7
dist/index.js
vendored
7
dist/index.js
vendored
|
@ -62110,7 +62110,10 @@ function throttling(octokit, octokitOptions) {
|
||||||
if (!enabled) {
|
if (!enabled) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
const common = { connection, timeout };
|
const common = { timeout };
|
||||||
|
if (typeof connection !== "undefined") {
|
||||||
|
common.connection = connection;
|
||||||
|
}
|
||||||
if (groups.global == null) {
|
if (groups.global == null) {
|
||||||
createGroups(Bottleneck, common);
|
createGroups(Bottleneck, common);
|
||||||
}
|
}
|
||||||
|
@ -62151,7 +62154,7 @@ function throttling(octokit, octokitOptions) {
|
||||||
const [state2, request, options] = info.args;
|
const [state2, request, options] = info.args;
|
||||||
const { pathname } = new URL(options.url, "http://github.test");
|
const { pathname } = new URL(options.url, "http://github.test");
|
||||||
const shouldRetryGraphQL = pathname.startsWith("/graphql") && error.status !== 401;
|
const shouldRetryGraphQL = pathname.startsWith("/graphql") && error.status !== 401;
|
||||||
if (!(shouldRetryGraphQL || error.status === 403)) {
|
if (!(shouldRetryGraphQL || error.status === 403 || error.status === 429)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const retryCount = ~~request.retryCount;
|
const retryCount = ~~request.retryCount;
|
||||||
|
|
1
report.txt
Normal file
1
report.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
1728389843
|
Loading…
Reference in a new issue