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
In JettyServerHttpRequest#createHeaders, it is assumed that the given HttpServletRequest is a org.eclipse.jetty.server.Request, while it could be a HttpServletRequestWrapper. Similarly, JettyServerHttpResponse#createHeaders assumes that the given response is a org.eclipse.jetty.server.Response, while it could be a HttpServletResponseWrapper.
This commit makes JettyServerHttpRequest aware of
HttpServletRequestWrapper, and JettyServerHttpResponse aware of
HttpServletResponseWrapper.
Closesspring-projectsgh-27146
Affects: 5.3.7
In
JettyServerHttpRequest#createHeaders
, it is assumed that the givenHttpServletRequest
is aorg.eclipse.jetty.server.Request
, while it could be aHttpServletRequestWrapper
. Similarly,JettyServerHttpResponse#createHeaders
assumes that the given response is aorg.eclipse.jetty.server.Response
, while it could be aHttpServletResponseWrapper
.Similar to #22143, but just for Jetty.
The text was updated successfully, but these errors were encountered: