Rename akka to pekko in configuration (#63)
Resolves https://github.com/apache/incubator-pekko/issues/54
This commit is contained in:
parent
708da8caec
commit
3d93dbcb81
1047 changed files with 4472 additions and 4464 deletions
|
|
@ -139,8 +139,8 @@ public class LambdaPersistencePluginDocTest {
|
|||
public MyJournalSpecTest() {
|
||||
super(
|
||||
ConfigFactory.parseString(
|
||||
"akka.persistence.journal.plugin = "
|
||||
+ "\"akka.persistence.journal.leveldb-shared\""));
|
||||
"pekko.persistence.journal.plugin = "
|
||||
+ "\"pekko.persistence.journal.leveldb-shared\""));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -160,8 +160,8 @@ public class LambdaPersistencePluginDocTest {
|
|||
public MySnapshotStoreTest() {
|
||||
super(
|
||||
ConfigFactory.parseString(
|
||||
"akka.persistence.snapshot-store.plugin = "
|
||||
+ "\"akka.persistence.snapshot-store.local\""));
|
||||
"pekko.persistence.snapshot-store.plugin = "
|
||||
+ "\"pekko.persistence.snapshot-store.local\""));
|
||||
}
|
||||
}
|
||||
// #snapshot-store-tck-java
|
||||
|
|
@ -180,13 +180,13 @@ public class LambdaPersistencePluginDocTest {
|
|||
super(
|
||||
ConfigFactory.parseString(
|
||||
"persistence.journal.plugin = "
|
||||
+ "\"akka.persistence.journal.leveldb-shared\""));
|
||||
+ "\"pekko.persistence.journal.leveldb-shared\""));
|
||||
|
||||
Config config = system().settings().config();
|
||||
storageLocations.add(
|
||||
new File(config.getString("akka.persistence.journal.leveldb.dir")));
|
||||
new File(config.getString("pekko.persistence.journal.leveldb.dir")));
|
||||
storageLocations.add(
|
||||
new File(config.getString("akka.persistence.snapshot-store.local.dir")));
|
||||
new File(config.getString("pekko.persistence.snapshot-store.local.dir")));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue