Skip to content

Commit

Permalink
Auto merge of #9695 - alexcrichton:flaky, r=ehuss
Browse files Browse the repository at this point in the history
Flag another curl error as possibly spurious

cc rust-lang/crates.io#3782
  • Loading branch information
bors committed Jul 16, 2021
2 parents c3dcfd8 + 5d7a2b8 commit 27277d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cargo/util/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ fn maybe_spurious(err: &Error) -> bool {
|| curl_err.is_couldnt_resolve_host()
|| curl_err.is_operation_timedout()
|| curl_err.is_recv_error()
|| curl_err.is_send_error()
|| curl_err.is_http2_error()
|| curl_err.is_http2_stream_error()
|| curl_err.is_ssl_connect_error()
Expand Down

0 comments on commit 27277d9

Please sign in to comment.