akka { persistence.snapshot-store.plugin = "mock-snapshot-store" persistence.journal.plugin = "mock-journal" loglevel = "DEBUG" loggers = ["akka.testkit.TestEventListener", "akka.event.slf4j.Slf4jLogger"] actor { # enable to test serialization only. serialize-messages = on serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" } serialization-bindings { "org.opendaylight.controller.cluster.raft.client.messages.FindLeader" = java "org.opendaylight.controller.cluster.raft.ReplicatedLogImplEntry" = java "com.google.protobuf.Message" = proto "com.google.protobuf.GeneratedMessage" = proto } } } mock-snapshot-store { # Class name of the plugin. class = "org.opendaylight.controller.cluster.raft.utils.MockSnapshotStore" # Dispatcher for the plugin actor. plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher" } mock-journal { # Class name of the plugin. class = "org.opendaylight.controller.cluster.raft.utils.MockAkkaJournal" # Dispatcher for the plugin actor. plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher" }