Add "akka" prefix to TCK code sample (#29529)

The current code sample for trying out the TCK misses the "akka" prefix
which means that the TCK test will fail with an error regarding not
specifying a journal plugin (because the journal plugin property is
wrong in the sample)

Fixes #29528
This commit is contained in:
Patrick Altaie 2020-09-01 08:42:25 +01:00 committed by GitHub
parent 7368e13458
commit 99f21dba3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,7 +139,7 @@ public class LambdaPersistencePluginDocTest {
public MyJournalSpecTest() { public MyJournalSpecTest() {
super( super(
ConfigFactory.parseString( ConfigFactory.parseString(
"persistence.journal.plugin = " "akka.persistence.journal.plugin = "
+ "\"akka.persistence.journal.leveldb-shared\"")); + "\"akka.persistence.journal.leveldb-shared\""));
} }