diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-12-01 11:13:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 11:13:11 -0500 |
commit | 084caffc08ceb33c4d20c4b6d744ce15c19c4baf (patch) | |
tree | bc7a2aa6b6bb55c2383912b6f8a542e648488fdc /ext/net/ops_tls.rs | |
parent | 4c36fa1fdf6c353fb01f2ec80da39a52e969fb5f (diff) |
refactor: cli doesn't need to depend on deno_tls (#12952)
also move create_http_client to deno_fetch
Diffstat (limited to 'ext/net/ops_tls.rs')
-rw-r--r-- | ext/net/ops_tls.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |