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
During development, we often need to restart the application.
But every restart takes 3+ seconds.
It's caused by default value gracefulStopDelaySec=3 in klite.Server.start().
I assume this could be timeout (maximum time, up to 3 seconds).
But the application always waits for 3 seconds, even if there is not running requests/jobs.
The text was updated successfully, but these errors were encountered:
This seems to be a bug in JDK HttpServer (ServerImpl), which according to the javadoc could terminate earlier, but in reality always waits as long as the passed delay...
During development, we often need to restart the application.
But every restart takes 3+ seconds.
It's caused by default value
gracefulStopDelaySec=3
inklite.Server.start()
.I assume this could be timeout (maximum time, up to 3 seconds).
But the application always waits for 3 seconds, even if there is not running requests/jobs.
The text was updated successfully, but these errors were encountered: