Skip to content

Commit

Permalink
fix(net): remove unstable check for unix socket listen (#21592)
Browse files Browse the repository at this point in the history
Fixes #21587

It seems this was missed in #21463.
cc @bartlomieju
  • Loading branch information
littledivy committed Dec 15, 2023
1 parent 94c70fd commit 28048e7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ext/net/ops_unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ where
NP: NetPermissions + 'static,
{
let address_path = Path::new(&path);
super::check_unstable(state, &api_name);
let permissions = state.borrow_mut::<NP>();
let api_call_expr = format!("{}()", api_name);
permissions.check_read(address_path, &api_call_expr)?;
Expand Down

0 comments on commit 28048e7

Please sign in to comment.