You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by he...@apache.org on 2023/03/08 21:00:11 UTC

[incubator-pekko] 03/05: artery port = 17355

This is an automated email from the ASF dual-hosted git repository.

hepin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git

commit c23f9fb83468fa1041d003c904442fb2fd34a931
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Tue Mar 7 01:54:53 2023 +0100

    artery port = 17355
---
 docs/src/main/paradox/remoting-artery.md | 8 ++++----
 remote/src/main/resources/reference.conf | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

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:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org