diff options
author | Bert Belder <bertbelder@gmail.com> | 2021-01-19 20:11:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 20:11:08 -0800 |
commit | b0132e8f9062a37e747306ddcf6ae2274832b652 (patch) | |
tree | a441d8735ffb123ba0e13c007e21ecc7893fe4da /runtime/ops/net.rs | |
parent | 9312d48e69f3edc951144c6a5e5e3e2cde0d0db9 (diff) |
fix(cli): actually stabilize Deno.shutdown() (#9181)
Diffstat (limited to 'runtime/ops/net.rs')
-rw-r--r-- | runtime/ops/net.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/ops/net.rs b/runtime/ops/net.rs index 364f1c576..aa97be00b 100644 --- a/runtime/ops/net.rs +++ b/runtime/ops/net.rs @@ -346,10 +346,7 @@ async fn op_shutdown( args: Value, _zero_copy: BufVec, ) -> Result<Value, AnyError> { - super::check_unstable2(&state, "Deno.shutdown"); - let args: ShutdownArgs = serde_json::from_value(args)?; - let rid = args.rid as u32; let resource = state |