From a1d5889991277a759238bb920cbf0cdb167cbf3f Mon Sep 17 00:00:00 2001 From: bebecue Date: Sat, 18 Feb 2023 01:31:00 +0800 Subject: [PATCH] fix: also ignore pipewait error --- src/cargo/sources/registry/http_remote.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/sources/registry/http_remote.rs b/src/cargo/sources/registry/http_remote.rs index d5c433a3a21..c3bcadf60bf 100644 --- a/src/cargo/sources/registry/http_remote.rs +++ b/src/cargo/sources/registry/http_remote.rs @@ -565,7 +565,7 @@ impl<'cfg> RegistryData for HttpRegistry<'cfg> { // Once the main one is opened we realized that pipelining is possible // and multiplexing is possible with static.crates.io. All in all this // reduces the number of connections done to a more manageable state. - handle.pipewait(true)?; + crate::try_old_curl!(handle.pipewait(true), "pipewait"); let mut headers = List::new(); // Include a header to identify the protocol. This allows the server to