We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 072f25e commit 86790f3Copy full SHA for 86790f3
reactor-netty-http/src/main/java/reactor/netty/http/IdleTimeoutHandler.java
@@ -84,6 +84,13 @@ public void channelInactive(ChannelHandlerContext ctx) throws Exception {
84
super.channelInactive(ctx);
85
}
86
87
+ @Override
88
+ public void handlerRemoved(ChannelHandlerContext ctx) throws Exception {
89
+ httpConnectionLiveness.cancel();
90
+
91
+ super.handlerRemoved(ctx);
92
+ }
93
94
/**
95
* Adds an idle timeout handler to the server pipeline.
96
*
0 commit comments