artery port = 17355

This commit is contained in:
PJ Fanning 2023-03-07 01:54:53 +01:00 committed by kerr
parent 1969f7580d
commit c23f9fb834
2 changed files with 6 additions and 6 deletions

View file

@ -58,7 +58,7 @@ pekko {
artery {
transport = tcp # See Selecting a transport below
canonical.hostname = "127.0.0.1"
canonical.port = 73550
canonical.port = 17355
}
}
}
@ -189,13 +189,13 @@ In the next sections the two alternatives are described in detail.
Scala
: ```
val selection =
context.actorSelection("pekko://actorSystemName@10.0.0.1:73550/user/actorName")
context.actorSelection("pekko://actorSystemName@10.0.0.1:17355/user/actorName")
```
Java
: ```
ActorSelection selection =
context.actorSelection("pekko://actorSystemName@10.0.0.1:73550/user/actorName");
context.actorSelection("pekko://actorSystemName@10.0.0.1:17355/user/actorName");
```
@ -850,7 +850,7 @@ pekko {
canonical.port = 8000 # external (logical) port
bind.hostname = local.address # internal (bind) hostname
bind.port = 73550 # internal (bind) port
bind.port = 17355 # internal (bind) port
}
}
}

View file

@ -760,9 +760,9 @@ pekko {
canonical {
# The default remote server port clients should connect to.
# Default is 73550, use 0 if you want a random available port
# Default is 17355, use 0 if you want a random available port
# This port needs to be unique for each actor system on the same machine.
port = 73550
port = 17355
# Hostname clients should connect to. Can be set to an ip, hostname
# or one of the following special values: