ff23633e5e5793b7f0de0c9938e6c70122a0a266
[controller.git] / opendaylight / md-sal / eos-dom-akka / src / test / resources / application.conf
1 akka {
2   loglevel = debug
3   actor {
4     warn-about-java-serializer-usage = off
5     allow-java-serialization = on
6     provider = cluster
7   }
8
9   remote {
10     artery {
11       enabled = on
12       canonical.hostname = "127.0.0.1"
13       canonical.port = 2550
14     }
15   }
16   cluster {
17     seed-nodes = [
18       "akka://ClusterSystem@127.0.0.1:2550"]
19     roles = [
20       "member-1"
21     ]
22     downing-provider-class = "akka.cluster.sbr.SplitBrainResolverProvider"
23
24     distributed-data {
25         # How often the Replicator should send out gossip information.
26         # This value controls how quickly Entity Ownership Service data is replicated
27         # across cluster nodes.
28         gossip-interval = 100 ms
29
30         # How often the subscribers will be notified of changes, if any.
31         # This value controls how quickly Entity Ownership Service decisions are
32         # propagated within a node.
33         notify-subscribers-interval = 20 ms
34       }
35   }
36 }
37