BUG-7556: update version tracking
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / resources / application.conf
index 524e69ffe3f45f2a26e07a018a82d522ee21caa8..11ad5eceb72638703ade0672dbca6ac15519a4a2 100644 (file)
@@ -40,6 +40,8 @@ unit-test {
   akka {
     loglevel = "DEBUG"
     #loggers = ["akka.event.slf4j.Slf4jLogger"]
+    persistence.snapshot-store.plugin = "in-memory-snapshot-store"
+    persistence.journal.plugin = "in-memory-journal"
   }
   bounded-mailbox {
     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
@@ -47,6 +49,17 @@ unit-test {
     mailbox-capacity = 1000
     mailbox-push-timeout-time = 10ms
   }
+
+  in-memory-journal {
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
+  }
+
+  in-memory-snapshot-store {
+    # Class name of the plugin.
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
+    # Dispatcher for the plugin actor.
+    plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
+  }
 }
 
 memberA {
@@ -58,6 +71,9 @@ memberA {
   akka {
     loglevel = "INFO"
     loggers = ["akka.event.slf4j.Slf4jLogger"]
+
+    persistence.snapshot-store.plugin = "in-memory-snapshot-store"
+    persistence.journal.plugin = "in-memory-journal"
     actor {
       provider = "akka.cluster.ClusterActorRefProvider"
       debug {
@@ -82,6 +98,16 @@ memberA {
       auto-down-unreachable-after = 10s
     }
   }
+  in-memory-journal {
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
+  }
+
+  in-memory-snapshot-store {
+    # Class name of the plugin.
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
+    # Dispatcher for the plugin actor.
+    plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
+  }
 }
 memberB {
   bounded-mailbox {
@@ -93,6 +119,9 @@ memberB {
     loglevel = "INFO"
     loggers = ["akka.event.slf4j.Slf4jLogger"]
 
+    persistence.snapshot-store.plugin = "in-memory-snapshot-store"
+    persistence.journal.plugin = "in-memory-journal"
+
     actor {
       provider = "akka.cluster.ClusterActorRefProvider"
       debug {
@@ -117,6 +146,16 @@ memberB {
       auto-down-unreachable-after = 10s
     }
   }
+  in-memory-journal {
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
+  }
+
+  in-memory-snapshot-store {
+    # Class name of the plugin.
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
+    # Dispatcher for the plugin actor.
+    plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
+  }
 }
 memberC {
   bounded-mailbox {
@@ -127,6 +166,10 @@ memberC {
   akka {
     loglevel = "INFO"
     loggers = ["akka.event.slf4j.Slf4jLogger"]
+
+    persistence.snapshot-store.plugin = "in-memory-snapshot-store"
+    persistence.journal.plugin = "in-memory-journal"
+
     actor {
       provider = "akka.cluster.ClusterActorRefProvider"
       debug {
@@ -151,5 +194,15 @@ memberC {
       auto-down-unreachable-after = 10s
     }
   }
+  in-memory-journal {
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
+  }
+
+  in-memory-snapshot-store {
+    # Class name of the plugin.
+    class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
+    # Dispatcher for the plugin actor.
+    plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
+  }
 }