Merge "Add XSQL into default compilation"
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / resources / application.conf
1 odl-cluster{
2   akka {
3     actor {
4       provider = "akka.cluster.ClusterActorRefProvider"
5
6     }
7     remote {
8       log-remote-lifecycle-events = off
9       netty.tcp {
10         hostname = "192.168.141.141"
11         port = 2551
12       }
13     }
14
15     cluster {
16       seed-nodes = ["akka.tcp://opendaylight-rpc@192.168.141.141:2551"]
17
18       auto-down-unreachable-after = 10s
19     }
20   }
21 }