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
From time to time when I delete an websocket_callback_client I get SIGABRT because a thread in websocket_callback_client (m_thread in wspp_callback_client to be specific) gets deleted by websocket_callback_client's destructor while it is joinable (not finished). I always call close().get() on the client before deleting it. Also, the delete and close are done by an independent thread - not inside a close/message-handler.
Any ideas how this can happen?
The text was updated successfully, but these errors were encountered:
From time to time when I
delete
anwebsocket_callback_client
I get SIGABRT because a thread in websocket_callback_client (m_thread
inwspp_callback_client
to be specific) gets deleted bywebsocket_callback_client
's destructor while it is joinable (not finished). I always callclose().get()
on the client before deleting it. Also, thedelete
andclose
are done by an independent thread - not inside a close/message-handler.Any ideas how this can happen?
The text was updated successfully, but these errors were encountered: