From: Tomas Cere Date: Tue, 29 Mar 2016 12:54:56 +0000 (+0000) Subject: Merge "Bug 5475 - File descriptor leak on netconf connector reconnects" into stable... X-Git-Tag: release/beryllium-sr2~12 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=4a55f62422e1a437a00f998abfe9946a0e9e4f52;hp=ea87ae53986baf02755e98206ed2b2b76557bb47;p=netconf.git Merge "Bug 5475 - File descriptor leak on netconf connector reconnects" into stable/beryllium --- diff --git a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandler.java b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandler.java index ca654c6fdb..1798934957 100644 --- a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandler.java +++ b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/ssh/client/AsyncSshHandler.java @@ -81,8 +81,6 @@ public class AsyncSshHandler extends ChannelOutboundHandlerAdapter { public AsyncSshHandler(final AuthenticationHandler authenticationHandler, final SshClient sshClient) throws IOException { this.authenticationHandler = Preconditions.checkNotNull(authenticationHandler); this.sshClient = Preconditions.checkNotNull(sshClient); - // Start just in case - sshClient.start(); } public static AsyncSshHandler createForNetconfSubsystem(final AuthenticationHandler authenticationHandler) throws IOException {