Merge "Bug#1854 - Exit command in console causing OOM."
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / application.conf
1 akka {
2     persistence.snapshot-store.plugin = "in-memory-snapshot-store"
3
4     loggers = ["akka.testkit.TestEventListener", "akka.event.slf4j.Slf4jLogger"]
5
6     actor {
7          serializers {
8                   java = "akka.serialization.JavaSerializer"
9                   proto = "akka.remote.serialization.ProtobufSerializer"
10          }
11
12         serialization-bindings {
13             "org.opendaylight.controller.cluster.datastore.modification.MutableCompositeModification" = java
14             "com.google.protobuf.Message" = proto
15
16         }
17     }
18 }
19
20 in-memory-snapshot-store {
21   # Class name of the plugin.
22   class = "org.opendaylight.controller.cluster.datastore.utils.InMemorySnapshotStore"
23   # Dispatcher for the plugin actor.
24   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
25 }
26
27 bounded-mailbox {
28   mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
29   mailbox-capacity = 1000
30   mailbox-push-timeout-time = 100ms
31 }