summaryrefslogtreecommitdiff
path: root/ext/websocket/lib.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-12-01 11:13:11 -0500
committerGitHub <noreply@github.com>2021-12-01 11:13:11 -0500
commit084caffc08ceb33c4d20c4b6d744ce15c19c4baf (patch)
treebc7a2aa6b6bb55c2383912b6f8a542e648488fdc /ext/websocket/lib.rs
parent4c36fa1fdf6c353fb01f2ec80da39a52e969fb5f (diff)
refactor: cli doesn't need to depend on deno_tls (#12952)
also move create_http_client to deno_fetch
Diffstat (limited to 'ext/websocket/lib.rs')
-rw-r--r--ext/websocket/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/websocket/lib.rs b/ext/websocket/lib.rs
index f3d44cac7..cf2ab6cac 100644
--- a/ext/websocket/lib.rs
+++ b/ext/websocket/lib.rs
@@ -281,6 +281,7 @@ where
root_cert_store,
vec![],
unsafely_ignore_certificate_errors,
+ None,
)?;
let tls_connector = TlsConnector::from(Arc::new(tls_config));
let dnsname = DNSNameRef::try_from_ascii_str(domain)