Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
19550a32
Commit
19550a32
authored
6 years ago
by
Rhys Arkins
Browse files
Options
Downloads
Patches
Plain Diff
refactor: log npm 429 retries
parent
1210300d
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/datasource/npm.js
+3
-0
3 additions, 0 deletions
lib/datasource/npm.js
with
3 additions
and
0 deletions
lib/datasource/npm.js
+
3
−
0
View file @
19550a32
...
...
@@ -220,6 +220,9 @@ async function getDependency(name, retries = 5) {
throw
new
Error
(
'
registry-failure
'
);
}
const
retryAfter
=
err
.
headers
[
'
retry-after
'
]
||
30
;
logger
.
info
(
`npm too many requests. retrying after
${
retryAfter
}
seconds`
);
await
delay
(
1000
*
(
retryAfter
+
1
));
return
getDependency
(
name
,
retries
-
1
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment