Bug 7518: Temporarily revert the main akka.conf to netty 20/50220/3
authorVratko Polak <vrpolak@cisco.com>
Wed, 11 Jan 2017 13:28:25 +0000 (14:28 +0100)
committerVratko Polak <vrpolak@cisco.com>
Wed, 11 Jan 2017 13:28:25 +0000 (14:28 +0100)
Change-Id: If31c4fc330917569b5008f2058545a8f0857a5f8
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf

index 31e54601dc6bf5e79b9103e2cdcb0d1dba5831be..9977babe350fa503bba0356c74eb109fccadb172 100644 (file)
@@ -3,21 +3,26 @@ odl-cluster-data {
   akka {
     remote {
       artery {
-        enabled = on
+        enabled = off
         canonical.hostname = "127.0.0.1"
         canonical.port = 2550
       }
+      netty.tcp {
+        hostname = "127.0.0.1"
+        port = 2550
+      }
     }
 
     cluster {
-      seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"]
+      # Remove ".tcp" when using artery.
+      seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
 
       roles = [
         "member-1"
       ]
 
     }
-    
+
     persistence {
       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
       # modifying the following two properties. The directory location specified may be a relative or absolute path.