Some instances of streams being reset do not notify Http2EventAdapter #14935
isaacrivriv
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In some cases where a stream is reset by the Http2ConnectionHandler, the Http2EventAdapters are not notified. The specific use case I'm looking at is where a reset frame is sent when the MAX_CONCURRENT_STREAMS numbers is reached for an HTTP2 server. An exception is hit by the server
io.netty.handler.codec.http2.Http2Exception$StreamException: Maximum active streams violated for this endpoint: 100and a reset stream is sent back but the listeners aren't notified at all that this happened. I would like to know when this type of error occurs so that I can do some custom logic for this exception but I have no way to do so. Would this be possible at all?Beta Was this translation helpful? Give feedback.
All reactions