-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetty 12 - Cleanup Shutdown classes #9201
Jetty 12 - Cleanup Shutdown classes #9201
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need a graceful module
@@ -28,14 +28,14 @@ | |||
/** | |||
* Handler to track active requests and allow them to gracefully complete. | |||
*/ | |||
public class GracefulShutdownHandler extends Handler.Wrapper implements Graceful |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a module and xml to add this to a jetty-home? If not, we probably need one, if so, then it needs to have the rename.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not that I can find.
Let me add a module to this PR then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
ShutdownHandler
in jetty-core (with test cases)ShutdownHandler
GracefulShutdownHandler
to justGracefulHandler
Fixes #9200