diff --git a/crates/binstalk-downloader/src/remote.rs b/crates/binstalk-downloader/src/remote.rs index a3104a47..7ef3d56e 100644 --- a/crates/binstalk-downloader/src/remote.rs +++ b/crates/binstalk-downloader/src/remote.rs @@ -142,13 +142,11 @@ impl Client { for certificate in certificates { builder = builder.add_root_certificate(certificate.0); } - - builder = builder.tls_early_data(true); } #[cfg(all(reqwest_unstable, feature = "http3"))] { - builder = builder.http3_congestion_bbr(); + builder = builder.http3_congestion_bbr().tls_early_data(true); } builder