-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Investigate Tomcat webflux integration test failures #33917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
After our Tomcat 11 upgrade, several WebFlux integration tests with Tomcat started failing because Tomcat considers some chunked client requests as invalid. While we're investigating this, this commit temporarily disables the relevant tests. See gh-33917
I have faced similar issue SpringBoot version: 3.3.5 I had to downgrade the version of Problem seems to have introduced from the version Controller Method
Client code that sends the request
error in server
|
Looks like this was fixed in Tomcat directly with https://bz.apache.org/bugzilla/show_bug.cgi?id=69545. |
As part of the Tomcat 11 upgrade in #33916, several WebFlux integration tests started failing intermittently with the server closing the response after commit when the client sends a request body.
It seems that Tomcat fails while parsing the HTTP request that it considers invalid:
The actual exception is thrown from https://github.com/apache/tomcat/blob/e036e9980294bc52f60930925aa521853a0ca5a5/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java#L453
We should investigate this failure.
The text was updated successfully, but these errors were encountered: