Pass maximum chunk size to AbstractNetconfSessionNegotiator
[netconf.git] / netconf / netconf-netty-util / src / test / java / org / opendaylight / netconf / nettyutil / TestSessionNegotiator.java
index 61be232134df2b8fba5de6958b688403470afae9..802bd2b03a22644eb1569c457a72e801d7fffd03 100644 (file)
@@ -18,7 +18,7 @@ final class TestSessionNegotiator
     TestSessionNegotiator(final NetconfHelloMessage hello, final Promise<TestingNetconfSession> promise,
             final Channel channel, final Timer timer,
             final NetconfSessionListener<TestingNetconfSession> sessionListener, final long connectionTimeoutMillis) {
-        super(hello, promise, channel, timer, sessionListener, connectionTimeoutMillis);
+        super(hello, promise, channel, timer, sessionListener, connectionTimeoutMillis, 16384);
     }
 
     @Override