-
Notifications
You must be signed in to change notification settings - Fork 646
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
Connection: keep-alive with Transfer-Encoding: chunked broken #265
Comments
Hi, The issue here is that As a workaround try to use Regards, |
I'm experiencing the same issue when using chrome! |
What are the steps that you follow when requesting via Chrome? |
Hmm I've a more complex application doing background fetches and after the fifth request the response just contains the headers and body is missing (figured out using tcpdump). When I set a |
Can you provide some example? |
yeah I try to throw sth together up this weekend |
I'm closing this one, if you can provide reproducible example you can reopen the issue. Regards, |
It looks to me as if the chunked encoding in combination with keep-alive is broken using reactor-netty 0.7.3.
If this is not a reactor-netty issue but spring or spring boot, please let me know.
Sample steps to reproduce:
checkout https://github.com/joshiste/reactor-netty-issue
and run
mvn spring-boot:run
run requests with keep-alive:
ab -n10 -l -c1 -k http://localhost:8080/
--> brokenrun request without keep-alive:
ab -n10 -l -c1 http://localhost:8080/
--> worksThe exact dependency-versions are in
dependencies.txt
same example using tomcat works like a charm...
The text was updated successfully, but these errors were encountered: