Closed gamgiov closed 1 year ago
The Simple Cluster Example does not work.
Looking in depth at the ..../simple/App.java class file and its methods, I noticed that there is a wrong configuration property in the method private static void startup(int port) (see line 38). The line is:
private static void startup(int port)
overrides.put("org.apache.pekko.remote.artery.canonical.port", port);
and should be changed to:
overrides.put("pekko.remote.artery.canonical.port", port);
Reading the Artery Remoting documentation (https://pekko.apache.org/docs/pekko/current/remoting-artery.html) the right property is "pekko.remote.artery.canonical.port"
After this change the sample works very well.
Interesting issue - no description whatsoever and meaningless title. Closing as a duplicate of https://github.com/apache/incubator-pekko-samples/issues/32
The Simple Cluster Example does not work.
Looking in depth at the ..../simple/App.java class file and its methods, I noticed that there is a wrong configuration property in the method
private static void startup(int port)
(see line 38). The line is:and should be changed to:
Reading the Artery Remoting documentation (https://pekko.apache.org/docs/pekko/current/remoting-artery.html) the right property is "pekko.remote.artery.canonical.port"
After this change the sample works very well.