change 2552+ port numbers
This commit is contained in:
parent
785369030d
commit
1969f7580d
11 changed files with 34 additions and 34 deletions
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue