diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-07-06 15:45:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-06 13:45:15 +0000 |
commit | 106e1bd90e0325198f5484d3d4f02e01a93381a3 (patch) | |
tree | 50e2bcd51986e45cae103c1aeb45e3a5c654cd84 /ext/net/ops_tls.rs | |
parent | de630b9b78ad09d3092e6fff4629d8503693bdff (diff) |
fix: remove unstable check for Deno.listenTls#alpnProtocols (#19732)
Diffstat (limited to 'ext/net/ops_tls.rs')
-rw-r--r-- | ext/net/ops_tls.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index fae4fb9b8..ac9c80f7a 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -1057,7 +1057,6 @@ where .with_single_cert(cert_chain, key_der) .expect("invalid key or certificate"); if let Some(alpn_protocols) = args.alpn_protocols { - super::check_unstable(state, "Deno.listenTls#alpn_protocols"); tls_config.alpn_protocols = alpn_protocols.into_iter().map(|s| s.into_bytes()).collect(); } |