From d3f6d58aa5b4ac2d61cd5b6fa4c066312917069a Mon Sep 17 00:00:00 2001 From: Eti Kagbala Date: Wed, 22 Dec 2021 12:49:46 -0400 Subject: [PATCH 1/2] Corrected documentation error with snapshot store Corrected documentation error with snapshot store class --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ceb860f..9b11440 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ This will run the snapshot-store with its default settings. The default settings ``` akka.persistence.snapshot-store.redis { # qualified type name of the Redis persistence journal actor - class = "Akka.Persistence.Redis.Journal.RedisJournal, Akka.Persistence.Redis" + class = "Akka.Persistence.Redis.Snapshot.RedisSnapshotStore, Akka.Persistence.Redis" # connection string, as described here: https://stackexchange.github.io/StackExchange.Redis/Configuration#basic-configuration-strings configuration-string = "" @@ -170,4 +170,4 @@ akka.actor { "Akka.Persistence.Redis.Snapshot.SnapshotEntry, Akka.Persistence.Redis" = redis } } -``` \ No newline at end of file +``` From a6e2ebb5cb13012abdc1fc45157746a5ec5e561b Mon Sep 17 00:00:00 2001 From: Eti Kagbala Date: Wed, 22 Dec 2021 12:52:59 -0400 Subject: [PATCH 2/2] removed unwanted whitespace