-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
fix: use --retry-connrefused
in curl invocations of bootstrap download
#110245
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @ozkanonur (or someone else) soon. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
--retry
to --retry-all-errors
--retry-all-errors
instead of --retry
in curl invocations of bootstrap download
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rustbot author |
@rustbot label -S-waiting-on-author +S-waiting-on-review |
this lgtm, once you squash your commits, we can merge the PR |
a529938
to
b065eef
Compare
@bors r+ rollup |
…kanonur fix: use `--retry-all-errors` instead of `--retry` in curl invocations of bootstrap download closes rust-lang#110178.
Looks like ubuntu 20.04 image uses curl 7.68 https://packages.ubuntu.com/focal/curl |
Yeah seems like @kayagokalp Can you replace the |
b065eef
to
8f951da
Compare
--retry-all-errors
instead of --retry
in curl invocations of bootstrap download--retry-connrefused
in curl invocations of bootstrap download
@rustbot ready |
8f951da
to
fa28d22
Compare
@bors r+ rollup |
…kanonur fix: use `--retry-connrefused` in curl invocations of bootstrap download helps with rust-lang#110178.
@bors r- rollup=iffy still failing |
centos 7 image have curl 7.29 :-(. It's easier to download our own version and install/build it. |
7.52 released in 2016, I was pretty sure that we have more recent version... "curl version 7.29. 0 was released on February 6 2013." :(
Doing custom build or installation just for couple new arguments, it doesn't really seem worth to me. cc @jyn514 |
@rustbot blocked |
i agree. instead we can put the retry logic in Rust (and make sure not to retry if it's a 404). |
Going to close this for now, and re ignite once I got some time again if no one beats mo to it! |
helps with #110178.