Skip to content

Commit

Permalink
Merge pull request #1508 from moulalis/UNDERTOW-2296_master
Browse files Browse the repository at this point in the history
[UNDERTOW-2296] Wrong type in INCLUDE_MAPPING request attribute
  • Loading branch information
fl4via authored Sep 12, 2023
2 parents 58f43f0 + 299b02f commit 510bb19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static ServletPathMatch dispatchInclude(final String path,
requestImpl.setAttribute(INCLUDE_CONTEXT_PATH, servletContext.getContextPath());
requestImpl.setAttribute(INCLUDE_SERVLET_PATH, pathMatch.getMatched());
requestImpl.setAttribute(INCLUDE_PATH_INFO, pathMatch.getRemaining());
requestImpl.setAttribute(INCLUDE_MAPPING, pathMatch.getMappingMatch());
requestImpl.setAttribute(INCLUDE_MAPPING, requestImpl.getHttpServletMapping());
return pathMatch;
}

Expand Down

0 comments on commit 510bb19

Please # to comment.