From 922087c79aff3c5f254c7331b8cb7fee3bfafe5a Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Thu, 29 May 2025 00:37:46 +1000 Subject: [PATCH] Fix builder Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- crates/binstalk-downloader/src/remote.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/binstalk-downloader/src/remote.rs b/crates/binstalk-downloader/src/remote.rs index 4c9b2e39..a3104a47 100644 --- a/crates/binstalk-downloader/src/remote.rs +++ b/crates/binstalk-downloader/src/remote.rs @@ -143,12 +143,12 @@ impl Client { builder = builder.add_root_certificate(certificate.0); } - builder.tls_early_data(true); + builder = builder.tls_early_data(true); } #[cfg(all(reqwest_unstable, feature = "http3"))] { - builder.http3_congestion_bbr(); + builder = builder.http3_congestion_bbr(); } builder