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
{{ message }}
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.
As seen in dedis/onet#359, there's a data race between the Go stdlib HTTP server and Graceful on shutdown.
It looks like http.Server.ConnState is only safe to be set before the server is started.
What if you removed the ConnState = nil? If it must not be called any more, then what about adding a bool to type Server called something like "ignoreConnStatus"?
The text was updated successfully, but these errors were encountered:
As seen in dedis/onet#359, there's a data race between the Go stdlib HTTP server and Graceful on shutdown.
It looks like http.Server.ConnState is only safe to be set before the server is started.
What if you removed the ConnState = nil? If it must not be called any more, then what about adding a bool to type Server called something like "ignoreConnStatus"?
The text was updated successfully, but these errors were encountered: