change default port number to 7355

This commit is contained in:
PJ Fanning 2023-03-06 12:19:29 +01:00 committed by kerr
parent defddc6af5
commit 785369030d
59 changed files with 215 additions and 215 deletions

View file

@ -53,7 +53,7 @@ public class LambdaPersistencePluginDocTest {
class SharedStorageUsage extends AbstractActor {
@Override
public void preStart() throws Exception {
String path = "pekko://example@127.0.0.1:2552/user/store";
String path = "pekko://example@127.0.0.1:7355/user/store";
ActorSelection selection = getContext().actorSelection(path);
selection.tell(new Identify(1), getSelf());
}