Uh oh!
There was an error while loading. Please reload this page.
travis: Make more network requests retryable - #40112
Merged
Merged
Conversation
rust-highfive
commented
Feb 26, 2017
Contributor
(rust_highfive has picked a reviewer for you, use r? to override) |
alexcrichton
commented
Feb 26, 2017
MemberAuthor
@bors: r=brson p=1 |
bors
commented
Feb 26, 2017
Collaborator
📌 Commit fc1ac9c has been approved by |
bors
commented
Feb 26, 2017
Collaborator
⌛ Testing commit fc1ac9c with merge bc62b9b... |
bors
commented
Feb 26, 2017
Collaborator
💔 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!
alexcrichton
commented
Feb 26, 2017
MemberAuthor
@bors: r=brson |
bors
commented
Feb 26, 2017
Collaborator
📌 Commit c08f382 has been approved by |
bors
commented
Feb 26, 2017
Collaborator
⌛ Testing commit c08f382 with merge 44e9e0a... |
bors added a commit
that referenced
this pull request
Feb 26, 2017
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!
est31
reviewed
Feb 26, 2017
| function retry { | ||
| local n=1 | ||
| local max=5 | ||
| local delay=15 |
bors
commented
Feb 26, 2017
Collaborator
☀️ Test successful - status-appveyor, status-travis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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!