Server Shutdown Delay #1583
johannwesely
started this conversation in
General
Replies: 1 comment 1 reply
-
You would have to set the server state and add a delay on your own right now. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an Issue in Certification Process wich says:
Shutdown/Err-001:
The server exits without delay and doesn't update the ServerStatus node. A suitable delay is required.
my shutdown looks like this:
public void stop() { stopped = true; this.server.shutdown(); Stack.releaseSharedResources(); }
Is there a method to realize a delay so serverstatus is updated before shutdown ? i tried shutdown.wait(10000) and shutdown.get(10,TimeUnit.SECONDS) but doesn't do the trick. Or do i have to set server state before shutting down on my own ?Greetings Johann
Beta Was this translation helpful? Give feedback.
All reactions