change 2552+ port numbers

This commit is contained in:
PJ Fanning 2023-03-06 12:29:03 +01:00 committed by kerr
parent 785369030d
commit 1969f7580d
11 changed files with 34 additions and 34 deletions

View file

@ -190,7 +190,7 @@ pekko {
actor {
deployment {
/sampleActor {
remote = "pekko.tcp://sampleActorSystem@127.0.0.1:2553"
remote = "pekko.tcp://sampleActorSystem@127.0.0.1:7356"
}
}
}
@ -200,7 +200,7 @@ pekko {
The configuration above instructs Pekko to react when an actor with path `/sampleActor` is created, i.e.
using @scala[`system.actorOf(Props(...), "sampleActor")`]@java[`system.actorOf(new Props(...), "sampleActor")`]. This specific actor will not be directly instantiated,
but instead the remote daemon of the remote system will be asked to create the actor,
which in this sample corresponds to `sampleActorSystem@127.0.0.1:2553`.
which in this sample corresponds to `sampleActorSystem@127.0.0.1:7356`.
Once you have configured the properties above you would do the following in code:

View file

@ -78,7 +78,7 @@ class ConfigDocSpec extends AnyWordSpec with Matchers {
# '/user/actorA/actorB' is a remote deployed actor
/actorA/actorB {
remote = "pekko://sampleActorSystem@127.0.0.1:2553"
remote = "pekko://sampleActorSystem@127.0.0.1:7356"
}
# all direct children of '/user/actorC' have a dedicated dispatcher