-
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: StateTrackingHandler #11072
Labels
Comments
Closed
sbordet
added a commit
that referenced
this issue
May 19, 2024
Introduced StateTrackingHandler. StateTrackingHandler is a troubleshooting Handler that helps to identify those cases where the Handler/Request/Response APIs are used improperly. In particular, it tracks the events described in StateTrackingHandler.Listener, such as the Handler callback not completed, or blocking demand callback, or a write callback not completed, etc. It also provides dump() capabilities, so the current requests and their state is dumped to help troubleshooting. Signed-off-by: Simone Bordet <[email protected]>
github-project-automation
bot
moved this from 🏗 In progress
to ✅ Done
in Jetty 12.0.10 (FROZEN)
May 19, 2024
joakime
changed the title
Jetty 12: CompleteCallbackHandler
Jetty 12: StateTrackingHandler
Jun 3, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jetty version(s)
12+
Enhancement Description
Introduce a
StateTrackingHandler
that detects when callbacks are not invoked, or take too long to execute (maybe because they block).Document it.
See discussion at #10916.
The text was updated successfully, but these errors were encountered: