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
In the handler we check if MVar is empty and then act based on the result. See here and there. There is a race if i.e. two handlers try to stop cluster, and witness it running. Then the second thread would deadlock on the just emptied MVar.
The assumption initially was that you're not gonna spam server with stop requests - but that's exactly what we do now in ctl to check if server is ready.
The text was updated successfully, but these errors were encountered:
In the handler we check if MVar is empty and then act based on the result. See here and there. There is a race if i.e. two handlers try to stop cluster, and witness it running. Then the second thread would deadlock on the just emptied MVar.
The assumption initially was that you're not gonna spam server with stop requests - but that's exactly what we do now in ctl to check if server is ready.
The text was updated successfully, but these errors were encountered: