artery port = 17355
This commit is contained in:
parent
1969f7580d
commit
c23f9fb834
2 changed files with 6 additions and 6 deletions
|
|
@ -58,7 +58,7 @@ pekko {
|
||||||
artery {
|
artery {
|
||||||
transport = tcp # See Selecting a transport below
|
transport = tcp # See Selecting a transport below
|
||||||
canonical.hostname = "127.0.0.1"
|
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
|
Scala
|
||||||
: ```
|
: ```
|
||||||
val selection =
|
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
|
Java
|
||||||
: ```
|
: ```
|
||||||
ActorSelection selection =
|
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
|
canonical.port = 8000 # external (logical) port
|
||||||
|
|
||||||
bind.hostname = local.address # internal (bind) hostname
|
bind.hostname = local.address # internal (bind) hostname
|
||||||
bind.port = 73550 # internal (bind) port
|
bind.port = 17355 # internal (bind) port
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -760,9 +760,9 @@ pekko {
|
||||||
canonical {
|
canonical {
|
||||||
|
|
||||||
# The default remote server port clients should connect to.
|
# 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.
|
# 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
|
# Hostname clients should connect to. Can be set to an ip, hostname
|
||||||
# or one of the following special values:
|
# or one of the following special values:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue