This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new b383de7c34 Fix IDE warning. Update changelog. b383de7c34 is described below commit b383de7c344f5d423a8f3576fddc56dd1f1d29e2 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Sep 12 16:45:18 2022 +0100 Fix IDE warning. Update changelog. --- test/org/apache/coyote/http11/TestHttp11Processor.java | 3 +++ webapps/docs/changelog.xml | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/test/org/apache/coyote/http11/TestHttp11Processor.java b/test/org/apache/coyote/http11/TestHttp11Processor.java index d2c677d566..9fe42438a4 100644 --- a/test/org/apache/coyote/http11/TestHttp11Processor.java +++ b/test/org/apache/coyote/http11/TestHttp11Processor.java @@ -1999,6 +1999,9 @@ public class TestHttp11Processor extends TomcatBaseTest { private static class TestPostNoReadServlet extends HttpServlet { + + private static final long serialVersionUID = 1L; + @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index d47a240ce3..a5fc07ce0a 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -218,6 +218,11 @@ the maximum value to 255. Based on a PR <pr>548</pr> by Stefan Mayr. (lihan) </fix> + <fix> + <pr>550</pr>: Correctly handle case where a Servlet responds to a + request with an expectation with a 2xx response without reading the + request body. Pull request provided by Malay Shah. (markt) + </fix> <fix> <pr>551</pr>: Avoid potential IndexOutOfBoundsException by fixing incorrect check when matching HTTP/2 preface. Submitted by 刘文章. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org