netty5/codec-http2
Norman Maurer 621af5ce27 Correctly guard against multiple RST frames for the same stream (#9811)
Motivation:

Http2ConnectionHandler tries to guard against sending multiple RST frames for the same stream. Unfortunally the code is not 100 % correct as it only updates the state after it calls write. This may lead to the situation of have an extra RST frame slip through if the second write for the RST frame is done from a listener that is attached to the promise.

Modifications:

- Update state before calling write
- Add unit test

Result:

Only ever send one RST frame per stream
2019-11-27 06:54:17 +01:00
..
src Correctly guard against multiple RST frames for the same stream (#9811) 2019-11-27 06:54:17 +01:00
pom.xml Remove duplicated declaration of dependency 2019-01-21 11:54:55 +01:00