From 084caffc08ceb33c4d20c4b6d744ce15c19c4baf Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 1 Dec 2021 11:13:11 -0500 Subject: refactor: cli doesn't need to depend on deno_tls (#12952) also move create_http_client to deno_fetch --- ext/net/ops_tls.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/net') diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index fd2308ef1..67e6dfc16 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -883,6 +883,7 @@ where root_cert_store, ca_certs, unsafely_ignore_certificate_errors, + None, )?; if let Some(alpn_protocols) = args.alpn_protocols { @@ -983,6 +984,7 @@ where root_cert_store, ca_certs, unsafely_ignore_certificate_errors, + None, )?; if let Some(alpn_protocols) = args.alpn_protocols { -- cgit v1.2.3