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:
parent
7368e13458
commit
99f21dba3a
1 changed files with 1 additions and 1 deletions
|
|
@ -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\""));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue