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

@ -28,7 +28,7 @@ public class StatsSampleOneMasterMain {
public static void main(String[] args) {
if (args.length == 0) {
startup(new String[] {"2551", "2552", "0"});
startup(new String[] {"2551", "7355", "0"});
StatsSampleOneMasterClientMain.main(new String[0]);
} else {
startup(args);

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());
}