Skip to content

Commit 27277d9

Browse files
committed
Auto merge of #9695 - alexcrichton:flaky, r=ehuss
Flag another curl error as possibly spurious cc rust-lang/crates.io#3782
2 parents c3dcfd8 + 5d7a2b8 commit 27277d9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cargo/util/network.rs

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ fn maybe_spurious(err: &Error) -> bool {
4949
|| curl_err.is_couldnt_resolve_host()
5050
|| curl_err.is_operation_timedout()
5151
|| curl_err.is_recv_error()
52+
|| curl_err.is_send_error()
5253
|| curl_err.is_http2_error()
5354
|| curl_err.is_http2_stream_error()
5455
|| curl_err.is_ssl_connect_error()

0 commit comments

Comments
 (0)