-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
SseEmitter IOException on HTTP Connection Close #33832
Comments
Although there's a error log be printed, your code works as you want. But actually it should print some details message, not just
When the framework/tomcat is handling some exceptions, it will print error logs even if they are handled as expected. Don't worry, these logs are normal. |
This log doesn't show up on HTTP1.1 or on Jetty so it's a bug in the way the exception from Tomcat is handled. The user of the SseEmitter should be able to catch the exception in case any additional processing is needed. I am able to catch the IOException when on HTTP1.1 but I am not able to catch it using HTTP2.0 so it's definitely inconsistent. |
This log show in both HTTP1.1 and HTTP2.0 when using tomcat. In your example projcet, I disable http2, exception still be logged. Config is:
This is a misnomer. And I mean the tomcat code is like (It's actually a long processing chain, here I've simply represented as):
In jetty, log was's show becaust it didn't print log, not your code catched it. |
With HTTP1.1 and Tomcat, the exception is different: @rstoyanchev I am wondering if we could limit the annoyance by using I think that would only work for HTTP1.1, not sure we have a solution for HTTP2 given the very generic Any thoughts? |
There is maybe room for improvement in Tomcat to include a message with the exception. We recently started wrapping exceptions in the AsyncListener#onError callback, but only for disconnected client errors, see #34363. I think we can broaden the fix there to any IOException since any IOException reported there is related to the response. |
In the mean time, you should be able to handle the IOException through an |
The crash happens on HTTP2 every time the browser issues an EventSource close() and can be reproduced with this repo:
https://github.com/alex-vukov/spring-sse-issue
You can test by starting the application, opening the following URL from the browser
https://localhost:8080/sse
and after you receive some data clicking on the browser's stop button. It can also be reproduced in JavaScript with EventSource close(). The error happens only with the integrated Tomcat server and only over HTTP2. It doesn't happen with Jetty (you can test by switching thepom.xml
withpom-jetty.xml
). This is the exception which breaks the app and it is unhandled even though in the code I haveemitter.send
wrapped in try-catch:The text was updated successfully, but these errors were encountered: