Merge "Bug 2820 - LLDP TLV support and testing"
[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         # enable to test serialization only.
10         serialize-messages = off
11
12         serializers {
13           java  = "akka.serialization.JavaSerializer"
14           proto = "akka.remote.serialization.ProtobufSerializer"
15         }
16
17         serialization-bindings {
18             "org.opendaylight.controller.cluster.common.actor.Monitor" = java
19             "org.opendaylight.controller.cluster.raft.client.messages.FindLeader" = java
20             "org.opendaylight.controller.cluster.raft.ReplicatedLogImplEntry" = java
21             "com.google.protobuf.Message" = proto
22             "com.google.protobuf.GeneratedMessage" = proto
23         }
24     }
25 }
26
27 mock-snapshot-store {
28   # Class name of the plugin.
29   class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
30   # Dispatcher for the plugin actor.
31   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
32 }
33
34 mock-journal {
35   # Class name of the plugin.
36   class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
37   # Dispatcher for the plugin actor.
38   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
39 }