Skip to content

Commit

Permalink
fix: also ignore pipewait error
Browse files Browse the repository at this point in the history
  • Loading branch information
bebecue committed Feb 18, 2023
1 parent 02343aa commit a1d5889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/sources/registry/http_remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a1d5889

Please sign in to comment.