-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
travis: Make more network requests retryable #40112
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
1329b0d
to
fc1ac9c
Compare
@bors: r=brson p=1 |
📌 Commit fc1ac9c has been approved by |
⌛ Testing commit fc1ac9c with merge bc62b9b... |
💔 Test failed - status-travis |
This commit attempts to move more network operations to being retryable through various operations. For example git submodule updates, downloading snapshots, etc, are now all in retryable steps. Hopefully this commit can cut down on the number of network failures we've been seeing!
fc1ac9c
to
c08f382
Compare
@bors: r=brson |
📌 Commit c08f382 has been approved by |
⌛ Testing commit c08f382 with merge 44e9e0a... |
travis: Make more network requests retryable This commit attempts to move more network operations to being retryable through various operations. For example git submodule updates, downloading snapshots, etc, are now all in retryable steps. Hopefully this commit can cut down on the number of network failures we've been seeing!
function retry { | ||
local n=1 | ||
local max=5 | ||
local delay=15 |
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.
Unused variable
☀️ Test successful - status-appveyor, status-travis |
This commit attempts to move more network operations to being retryable through
various operations. For example git submodule updates, downloading snapshots,
etc, are now all in retryable steps.
Hopefully this commit can cut down on the number of network failures we've been
seeing!