Skip to content

Commit 9e2933e

Browse files
committed
fix: also ignore pipewait error
1 parent 6dbfde3 commit 9e2933e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/sources/registry/http_remote.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ impl<'cfg> RegistryData for HttpRegistry<'cfg> {
565565
// Once the main one is opened we realized that pipelining is possible
566566
// and multiplexing is possible with static.crates.io. All in all this
567567
// reduces the number of connections done to a more manageable state.
568-
handle.pipewait(true)?;
568+
crate::try_old_curl!(handle.pipewait(true), "pipewait");
569569

570570
let mut headers = List::new();
571571
// Include a header to identify the protocol. This allows the server to

0 commit comments

Comments
 (0)