Revert Servlet TRACE error dispatch workaround

Closes gh-36258
This commit is contained in:
Brian Clozel
2026-02-04 14:53:07 +01:00
parent 59a9d0fcb9
commit d1b0bdb3d5
@@ -971,10 +971,7 @@ public abstract class FrameworkServlet extends HttpServletBean implements Applic
return;
}
}
// Work around until https://github.com/jakartaee/servlet/pull/545 is fixed and in use
if (request.getDispatcherType() != DispatcherType.ERROR) {
super.doTrace(request, response);
}
super.doTrace(request, response);
}
/**