From 3bad6da9a812b0c3df8bb0831f617bdd81282d58 Mon Sep 17 00:00:00 2001 From: Sebastian Harko Date: Thu, 27 Jul 2017 01:20:47 -0700 Subject: [PATCH] Docs: Persistence: Fix note about sharding and snapshots (#23444) --- akka-docs/src/main/paradox/scala/persistence.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/scala/persistence.md b/akka-docs/src/main/paradox/scala/persistence.md index a9cace1ff9..e93892d1a2 100644 --- a/akka-docs/src/main/paradox/scala/persistence.md +++ b/akka-docs/src/main/paradox/scala/persistence.md @@ -687,7 +687,7 @@ Since it is acceptable for some applications to not use any snapshotting, it is However, Akka will log a warning message when this situation is detected and then continue to operate until an actor tries to store a snapshot, at which point the operation will fail (by replying with an `SaveSnapshotFailure` for example). -Note that @ref:[Cluster Sharding](cluster-sharding.md) is using snapshots, so if you use Cluster Sharding you need to define a snapshot store plugin. +Note that the "persistence mode" of @ref:[Cluster Sharding](cluster-sharding.md) makes use of snapshots. If you use that mode, you'll need to define a snapshot store plugin. @@@