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
Currently the server, once started, just runs forever and there is not really a way to know whether it's still running. So it might be useful to add a way to gracefully stop the server, similar to how hyper does it. As far as I understand it is already possible to stop the server by using tokio::select! or something like that, but that might just drop ongoing HTTP connections. We might also want to add a method to Controller to check whether the server is still running.
The text was updated successfully, but these errors were encountered:
Currently the server, once started, just runs forever and there is not really a way to know whether it's still running. So it might be useful to add a way to gracefully stop the server, similar to how hyper does it. As far as I understand it is already possible to stop the server by using
tokio::select!
or something like that, but that might just drop ongoing HTTP connections. We might also want to add a method toController
to check whether the server is still running.The text was updated successfully, but these errors were encountered: