From 8bdf66c59c7424759f441e19047d7ffc0bf13ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Wed, 28 Dec 2022 11:42:04 +0100 Subject: [PATCH] fix(ext/net): Remove unstable check from op_node_unstable_net_listen_udp (#17207) The whole point of creating this alternative operation was to allow usage in node, without `--unstable` flag. Introduced and I believe missed in https://github.com/denoland/deno/pull/16520/ --- ext/net/ops.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/net/ops.rs b/ext/net/ops.rs index 48db797457..c4fb82fb62 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -366,7 +366,6 @@ fn op_node_unstable_net_listen_udp( where NP: NetPermissions + 'static, { - super::check_unstable(state, "Deno.listenDatagram"); net_listen_udp::(state, addr, reuse_address) }