diff options
author | Kamil Ogórek <kamil.ogorek@gmail.com> | 2022-12-28 11:42:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 11:42:04 +0100 |
commit | 8bdf66c59c7424759f441e19047d7ffc0bf13ef3 (patch) | |
tree | 2fb73e493b3b281e1384b0fda88830006bf633b1 /ext/net/ops.rs | |
parent | bece1ce05704d9a81efd2e04a22ee721795903e7 (diff) |
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/
Diffstat (limited to 'ext/net/ops.rs')
-rw-r--r-- | ext/net/ops.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/net/ops.rs b/ext/net/ops.rs index 48db79745..c4fb82fb6 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -366,7 +366,6 @@ fn op_node_unstable_net_listen_udp<NP>( where NP: NetPermissions + 'static, { - super::check_unstable(state, "Deno.listenDatagram"); net_listen_udp::<NP>(state, addr, reuse_address) } |