Matthias Perktold
Matthias Perktold
In a new case, I have examined the logs and found the following exception: ``` Reset cancel_stream_error org.eclipse.jetty.io.EofException at org.eclipse.jetty.http2.server.internal.HttpStreamOverHTTP2.onFailure(HttpStreamOverHTTP2.java:593) at org.eclipse.jetty.http2.server.internal.HTTP2ServerConnection.onStreamFailure(HTTP2ServerConnection.java:204) at org.eclipse.jetty.http2.server.HTTP2ServerConnectionFactory$HTTPServerSessionListener.onFailure(HTTP2ServerConnectionFactory.java:173) at org.eclipse.jetty.http2.server.HTTP2ServerConnectionFactory$HTTPServerSessionListener.onReset(HTTP2ServerConnectionFactory.java:160) at org.eclipse.jetty.http2.HTTP2Stream.notifyReset(HTTP2Stream.java:876) at org.eclipse.jetty.http2.HTTP2Stream.onReset(HTTP2Stream.java:586)...
> The connection is not closed, this is just a stream failure due to the fact that the client sent a reset to the server, just for that particular stream....
> Yes, it will be woken up with an exception (your first stack trace). That stack trace is from a thread dump, there is no exception. On the contrary, it...
I think I managed to reproduce the issue with Jetty's HTTP2Client. The server part is a echo servlet that simply writes the request content back to the response: ```java var...
Thanks for your investigation and clarification. It's my first time using `HTTP2Client` directly, so I am surely not using it correctly. But in part, I do that on purpose here,...