-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for Netty connection cleanup bug (#2233)
* feat: add IdleState handling for outbound connections so that they are automatically closed when idle as with inbound connections * fix: implement correct maxIdleTime in NettyOutboundConnectionHandler * fix: NettyIdleStateKeepAliveHandler should call close on connection not the channel context. Closign the connection should cascade and close both session and Netty channel * feat: add IdleState handling for outbound connections so that they are automatically closed when idle as with inbound connections * fix: implement correct maxIdleTime in NettyOutboundConnectionHandler * fix: NettyIdleStateKeepAliveHandler should call close on connection not the channel context. Closign the connection should cascade and close both session and Netty channel * OF-2559: Comment to explain hard-coded startTls(false) * fix: OF-2559 - cleanup Connection & session when channel unregistered to prevent NPE in session summary * fix: OF-2559 - add null check for connection close * Fix server-session-details NPE JSP resolvers are unable to resolve default properties on interfaces. NPEs were caused by the failure to resolve the new default methods on the ServerSession interface (e.g. `ServerSession#isUsingServerDialback()`) See this post for further details: https://stackoverflow.com/questions/35130290/property-not-found-on-type-when-using-interface-default-methods-in-jsp-el * fix: OF-2559 - fix for compression pipeline position * fix: OF-2559 - unique names for compression handlers --------- Co-authored-by: Alex Gidman <[email protected]>
- Loading branch information
1 parent
5cd2521
commit c50cdf8
Showing
7 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters