Skip to content

Commit

Permalink
Fix re-dispatch back to ee8/9
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Jun 12, 2024
1 parent 8715015 commit 6caa306
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@ protected ContextRequest wrapRequest(org.eclipse.jetty.server.Request request, R
httpChannel = new HttpChannel(ContextHandler.this, request.getConnectionMetaData());
request.getComponents().getCache().setAttribute(HttpChannel.class.getName(), httpChannel);
}
else if (httpChannel.getContextHandler() == ContextHandler.this)
else if (httpChannel.getContextHandler() == ContextHandler.this && !request.getContext().isCrossContextDispatch(request))
{
httpChannel.recycle();
}
Expand Down

0 comments on commit 6caa306

Please sign in to comment.