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
There exists a potential race condition while repy attempts to cleanup a network socket.
Assume repy is bound to the IP/Port tuple (X,Y) and it closes the socket. If another process binds to (X,Y) while repy is waiting for the cleanup to occur it will appear as if the OS has not yet cleaned up the socket, and repy will block indefinitely. This is a very rare bug, and is hard to trigger since repy checks 5 times per second for the socket cleanup.
Let's check if this problem really / still exists.
The text was updated successfully, but these errors were encountered:
An old wiki page claimed:
Let's check if this problem really / still exists.
The text was updated successfully, but these errors were encountered: