Skip to content

Commit

Permalink
Auto merge of #7318 - reitermarkus:ssl-connect-error, r=alexcrichton
Browse files Browse the repository at this point in the history
Retry on SSL Connect Error.

I have been getting a bunch of spurious `[35] SSL connect error`s on Azure Pipelines, so these should be treated as spurious errors.
  • Loading branch information
bors committed Sep 3, 2019
2 parents d228660 + f7724ae commit 531c4bf
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 @@ -51,6 +51,7 @@ fn maybe_spurious(err: &Error) -> bool {
|| curl_err.is_operation_timedout()
|| curl_err.is_recv_error()
|| curl_err.is_http2_stream_error()
|| curl_err.is_ssl_connect_error()
{
return true;
}
Expand Down

0 comments on commit 531c4bf

Please sign in to comment.