From: Maros Marsalek Date: Wed, 25 Mar 2015 10:10:19 +0000 (+0100) Subject: BUG-2424 Bump mina sshd-core version to 0.14 X-Git-Tag: release/lithium~341^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=f11d188c9801691450e6edc4d1fe36cf84e459da BUG-2424 Bump mina sshd-core version to 0.14 The 0.14 version includes fix for following issue: https://issues.apache.org/jira/browse/SSHD-393 It caused the transfer over ssh to freeze completely when sending big messages e.g. 8Mb Tested using connection between ODL and netconf-testtool transfering yang schema with size of 40Mb. Change-Id: I8a2dc38f0feed30a0f6b6c4197e9a546df16491b Signed-off-by: Maros Marsalek --- diff --git a/opendaylight/commons/opendaylight/pom.xml b/opendaylight/commons/opendaylight/pom.xml index 130cb11c5a..2915a8dfd9 100644 --- a/opendaylight/commons/opendaylight/pom.xml +++ b/opendaylight/commons/opendaylight/pom.xml @@ -187,7 +187,7 @@ 2013.09.07.7-SNAPSHOT 1.1.0-SNAPSHOT 0.7.0-SNAPSHOT - 0.12.0 + 0.14.0 0.9.7 3.3.0 diff --git a/opendaylight/netconf/netconf-ssh/src/test/java/org/opendaylight/controller/netconf/netty/SSHTest.java b/opendaylight/netconf/netconf-ssh/src/test/java/org/opendaylight/controller/netconf/netty/SSHTest.java index ab73126021..d7d8660ae4 100644 --- a/opendaylight/netconf/netconf-ssh/src/test/java/org/opendaylight/controller/netconf/netty/SSHTest.java +++ b/opendaylight/netconf/netconf-ssh/src/test/java/org/opendaylight/controller/netconf/netty/SSHTest.java @@ -61,7 +61,7 @@ public class SSHTest { @AfterClass public static void tearDown() throws Exception { hashedWheelTimer.stop(); - nettyGroup.shutdownGracefully().await(); + nettyGroup.shutdownGracefully().await(5, TimeUnit.SECONDS); minaTimerEx.shutdownNow(); nioExec.shutdownNow(); }