Update tests with Akka Artery 15/95515/13
authorKostiantyn Nosach <kostiantyn.nosach@pantheon.tech>
Wed, 17 Mar 2021 13:57:14 +0000 (15:57 +0200)
committerRobert Varga <nite@hq.sk>
Mon, 12 Jul 2021 11:19:54 +0000 (11:19 +0000)
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 <kostiantyn.nosach@pantheon.tech>
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
netconf/netconf-topology-singleton/src/test/resources/application.conf

index ceae6decd8a3fa6373b6868d8125ef70f343b44a..08b6ebba62dc58e22d0f44f8aafc249551ca5de8 100644 (file)
@@ -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
       }
     }