New connection for every request #17
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Resolved by
765447e6d1
We do not do a new connection for every request.
Instead, on every request, the client checks if the connection is still working by sending a Ping (and receiving a Pong). If this fails, an endless loop is started that tries to reconnect to the server.
Probably still not the best or most elegant solution, but solves the problem of clients being stuck.