You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With reactor-netty-http:1.0.20 (with spring-webflux), on setting HttpServer.idleTimeout(idleTimeoutInMs), no GOWAY packet is seen in tcpdump.with protocol H2C, HTTP11, but directly a FIN packet at TCP level.
HttpServer.idleTimeout(idleTimeoutInMs) definition says, .idleTimeout => Specifies an idle timeout on the connection when it is waiting for an HTTP request (resolution: ms). Once the timeout is reached the connection will be closed.
This definition doesn't say anything about the level at which it sets the idletimeout, is it directly at TCP level or HTTP level. As per the observation from tcpdump, the idle connection termination is not graceful. The connection gets terminated on reaching the idle timeout, as seen by FIN packet at TCP level. But no GOAWAY packet is observed.
Need to configure idle timeout at HTTP level so that it is accompanied with a GOAWAY packet to terminate connection gracefully. Is there any other way of setting idletimeout for reactive netty httpserver at http level?
With reactor-netty-http:1.0.20 (with spring-webflux), on setting HttpServer.idleTimeout(idleTimeoutInMs), no GOWAY packet is seen in tcpdump.with protocol H2C, HTTP11, but directly a FIN packet at TCP level.
HttpServer.idleTimeout(idleTimeoutInMs) definition says, .idleTimeout => Specifies an idle timeout on the connection when it is waiting for an HTTP request (resolution: ms). Once the timeout is reached the connection will be closed.
This definition doesn't say anything about the level at which it sets the idletimeout, is it directly at TCP level or HTTP level. As per the observation from tcpdump, the idle connection termination is not graceful. The connection gets terminated on reaching the idle timeout, as seen by FIN packet at TCP level. But no GOAWAY packet is observed.
Need to configure idle timeout at HTTP level so that it is accompanied with a GOAWAY packet to terminate connection gracefully. Is there any other way of setting idletimeout for reactive netty httpserver at http level?
The text was updated successfully, but these errors were encountered: