fixes to http connector for tests

This commit is contained in:
yeastplume 2025-03-02 13:49:16 +00:00
parent fcf37e7d76
commit 2d778c627a

View file

@ -218,7 +218,7 @@ where
async fn send_request_async(req: Request<Body>, timeout: TimeOut) -> Result<String, Error> {
let https = hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.https_only()
.https_or_http()
.enable_http1()
.build();