From 106e1bd90e0325198f5484d3d4f02e01a93381a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 6 Jul 2023 15:45:15 +0200 Subject: [PATCH] fix: remove unstable check for Deno.listenTls#alpnProtocols (#19732) --- ext/net/ops_tls.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index fae4fb9b86..ac9c80f7a5 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(); }