You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It happens when there are many incoming transactions/Websockets, such as during the benchmark.
This can happen due to the lock over the connections in ws_server.rs.
If the lock is not release properly then new connections cannot be accepted due to the lock being needed in accept_connection(...)
The lock is not being released as on_ready(..) is not returning. Inside on_ready(..) it seems to be read_or_initialize_websocket(..) that is blocking. This is where I stopped digging for now.
The text was updated successfully, but these errors were encountered:
It happens when there are many incoming transactions/Websockets, such as during the benchmark.
This can happen due to the lock over the
connections
inws_server.rs
.If the lock is not release properly then new connections cannot be accepted due to the lock being needed in
accept_connection(...)
The lock is not being released as
on_ready(..)
is not returning. Insideon_ready(..)
it seems to beread_or_initialize_websocket(..)
that is blocking. This is where I stopped digging for now.The text was updated successfully, but these errors were encountered: