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
I would like to use in Application code only org.eclipse.jetty.server.Handler and if I do so and use it with Server::setErrorHandler then I'll get a warning WARN o.e.jetty.server.Handler$Abstract - No Server set for csclhs.UnhandledErrorsHandler@5ace1ed4{STARTING} and due to this I need to implement my hanlder as a org.eclipse.jetty.server.Request.Handler to suppress this warning.
Nothing serious, but I think it should be easy to change.
The text was updated successfully, but these errors were encountered:
Jetty version(s)
12.0.16
Enhancement Description
There is an inconsistency in arguments between
Server::setDefaultHandler
andServer::setErrorHandler
.Server::setDefaultHandler
acceptsorg.eclipse.jetty.server.Handler
Server::setErrorHandler
acceptsorg.eclipse.jetty.server.Request.Handler
I would like to use in Application code only
org.eclipse.jetty.server.Handler
and if I do so and use it withServer::setErrorHandler
then I'll get a warningWARN o.e.jetty.server.Handler$Abstract - No Server set for csclhs.UnhandledErrorsHandler@5ace1ed4{STARTING}
and due to this I need to implement my hanlder as aorg.eclipse.jetty.server.Request.Handler
to suppress this warning.Nothing serious, but I think it should be easy to change.
The text was updated successfully, but these errors were encountered: