travis: Make more network requests retryable #40112
Merged
bors merged 1 commit intorust-lang:masterfrom Feb 26, 2017
Merged
Conversation
Contributor
|
(rust_highfive has picked a reviewer for you, use r? to override) |
1329b0d to
fc1ac9c
Compare
Member
Author
|
@bors: r=brson p=1 |
Collaborator
|
📌 Commit fc1ac9c has been approved by |
Collaborator
|
⌛ Testing commit fc1ac9c with merge bc62b9b... |
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!
fc1ac9c to
c08f382
Compare
Member
Author
|
@bors: r=brson |
Collaborator
|
📌 Commit c08f382 has been approved by |
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 |
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 free
to 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!