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
I believe this is happening because the peer message processor is not being shut down, and if a transaction comes in during the end of shutdown after the database is closed this crash occurs. However after a brief investigation I'm not sure if/where this message processor is supposed to be gracefully terminated - the Stop() function in the connection manager just closes the listeners.
The text was updated successfully, but these errors were encountered:
Thanks for the report. We need to add a Stop() method to Peer that send a message to the quit channel. When ConnectionManager is stopped it should call Stop() for every GetAllPeers()
I've noticed the following crash when shutting down:
I believe this is happening because the peer message processor is not being shut down, and if a transaction comes in during the end of shutdown after the database is closed this crash occurs. However after a brief investigation I'm not sure if/where this message processor is supposed to be gracefully terminated - the
Stop()
function in the connection manager just closes the listeners.The text was updated successfully, but these errors were encountered: