mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix(runtime/websocket): remove eprintln (#8817)
This commit is contained in:
parent
ffb5f7a4e1
commit
37fd0836d0
1 changed files with 0 additions and 1 deletions
|
@ -240,7 +240,6 @@ pub async fn op_ws_send(
|
||||||
.ok_or_else(bad_resource_id)?;
|
.ok_or_else(bad_resource_id)?;
|
||||||
let mut tx = RcRef::map(&resource, |r| &r.tx).borrow_mut().await;
|
let mut tx = RcRef::map(&resource, |r| &r.tx).borrow_mut().await;
|
||||||
tx.send(msg).await?;
|
tx.send(msg).await?;
|
||||||
eprintln!("sent!");
|
|
||||||
Ok(json!({}))
|
Ok(json!({}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue