From: Kostiantyn Nosach Date: Wed, 17 Mar 2021 13:57:14 +0000 (+0200) Subject: Update tests with Akka Artery X-Git-Tag: v2.0.1~10 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=bc9505ab70a33ff60813c416b8755caa871df219;p=netconf.git Update tests with Akka Artery Upstream has switched to using Artery TCP instead of classic transport. Update test config file netconf/netconf-topology-singleton/src/test/resources/application.conf with new transport (artery-tcp) JIRA: NETCONF-787 Change-Id: I70a4a5bb23f53166d8b164fced7f1311f1d7f764 Signed-off-by: Kostiantyn Nosach Signed-off-by: Robert Varga --- diff --git a/netconf/netconf-topology-singleton/src/test/resources/application.conf b/netconf/netconf-topology-singleton/src/test/resources/application.conf index ceae6decd8..08b6ebba62 100644 --- a/netconf/netconf-topology-singleton/src/test/resources/application.conf +++ b/netconf/netconf-topology-singleton/src/test/resources/application.conf @@ -5,9 +5,11 @@ Slave { warn-about-java-serializer-usage = false } remote { - classic.netty.tcp { - hostname = "127.0.0.1" - port = 2550 + artery { + enabled = on + transport = tcp + canonical.hostname = "127.0.0.1" + canonical.port = 2550 } } @@ -26,9 +28,11 @@ Master { warn-about-java-serializer-usage = false } remote { - classic.netty.tcp { - hostname = "127.0.0.1" - port = 2552 + artery { + enabled = on + transport = tcp + canonical.hostname = "127.0.0.1" + canonical.port = 2552 } }