-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[build] automatically retry all downloads #119642
[build] automatically retry all downloads #119642
Conversation
93333fb
to
3a8a404
Compare
3a8a404
to
ae320d7
Compare
💚 Build Succeeded
Metrics [docs]
History
To update your PR or re-run it, just comment with: |
Pinging @elastic/kibana-operations (Team:Operations) |
💔 Backport failed
To backport manually run: |
(cherry picked from commit 3358874)
Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync. |
2 similar comments
Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync. |
Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync. |
Co-authored-by: Kibana Machine <[email protected]>
Co-authored-by: Kibana Machine <[email protected]>
We had a failure on CI recently because we weren't able to download the shasums for nodejs. This HTTP request was being done with axios directly because we're not trying to download to the filesystem and validate the shasums of the shasums, so we couldn't use the existing
download()
helper. This renames that helper todownloadToDisk()
and adds adownloadToString()
helper which wraps axios, adds retries and logging about the requests, and is now in use in all locations where Axios was used in the build scripts.