Skip to content

Commit

Permalink
Auto merge of #8102 - alexcrichton:more-spurious, r=Eh2406
Browse files Browse the repository at this point in the history
Whitelist another known spurious curl error

Seen recently in comments on #6788
  • Loading branch information
bors committed Apr 13, 2020
2 parents 9def590 + f54ac5a commit 15d8044
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 @@ -47,6 +47,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_http2_error()
|| curl_err.is_http2_stream_error()
|| curl_err.is_ssl_connect_error()
|| curl_err.is_partial_file()
Expand Down

0 comments on commit 15d8044

Please sign in to comment.