Immediately disconnect connection on disconnect request.

The disconnect handling logic is broken on the client, after the symbol
resolution was moved to a separate thread. Use workaround until a proper fix
is available.
This commit is contained in:
Bartosz Taudul 2021-12-11 13:13:57 +01:00
parent 14392a6e0e
commit 9b624049a5
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -7738,7 +7738,8 @@ void Worker::ReadTimeline( FileRead& f, Vector<short_ptr<GpuEvent>>& _vec, uint6
void Worker::Disconnect()
{
Query( ServerQueryDisconnect, 0 );
//Query( ServerQueryDisconnect, 0 );
Shutdown();
m_disconnect = true;
}