akka.actor.provider set to 'cluster'
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / resources / application.conf
1 akka {
2     persistence.snapshot-store.plugin = "mock-snapshot-store"
3     persistence.journal.plugin = "mock-journal"
4
5     loglevel = "DEBUG"
6     loggers = ["akka.testkit.TestEventListener", "akka.event.slf4j.Slf4jLogger"]
7
8     actor {
9         provider = "akka.cluster.ClusterActorRefProvider"
10
11         # enable to test serialization only.
12         serialize-messages = off
13
14         default-mailbox {
15            mailbox-type="org.opendaylight.controller.cluster.common.actor.UnboundedDequeBasedControlAwareMailbox"
16         }
17     }
18 }
19
20 mock-snapshot-store {
21   # Class name of the plugin.
22   class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
23   # Dispatcher for the plugin actor.
24   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
25 }
26
27 mock-journal {
28   # Class name of the plugin.
29   class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
30   # Dispatcher for the plugin actor.
31   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
32 }