From bc9505ab70a33ff60813c416b8755caa871df219 Mon Sep 17 00:00:00 2001 From: Kostiantyn Nosach Date: Wed, 17 Mar 2021 15:57:14 +0200 Subject: [PATCH] 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 --- .../src/test/resources/application.conf | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) 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 } } -- 2.36.6