Skip to content

Commit 9da2e70

Browse files
committed
Don't enable HTTP1 pipelining as apparently it's flaky
It seems to fix some issues perhaps!
1 parent 2245fc4 commit 9da2e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/core/package.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ impl<'cfg> PackageSet<'cfg> {
287287
// We've enabled the `http2` feature of `curl` in Cargo, so treat
288288
// failures here as fatal as it would indicate a build-time problem.
289289
let mut multi = Multi::new();
290-
multi.pipelining(true, true)
290+
multi.pipelining(false, true)
291291
.chain_err(|| "failed to enable multiplexing/pipelining in curl")?;
292292

293293
Ok(PackageSet {

0 commit comments

Comments
 (0)