diff --git a/docs/src/main/paradox/remoting-artery.md b/docs/src/main/paradox/remoting-artery.md index a10164c373..82dce3de27 100644 --- a/docs/src/main/paradox/remoting-artery.md +++ b/docs/src/main/paradox/remoting-artery.md @@ -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 } } } diff --git a/remote/src/main/resources/reference.conf b/remote/src/main/resources/reference.conf index 4f03796b62..3705bf1725 100644 --- a/remote/src/main/resources/reference.conf +++ b/remote/src/main/resources/reference.conf @@ -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: