change default port number to 7355

This commit is contained in:
PJ Fanning 2023-03-06 12:19:29 +01:00 committed by kerr
parent defddc6af5
commit 785369030d
59 changed files with 215 additions and 215 deletions

View file

@ -205,8 +205,8 @@ class ClusterClientSpec extends MultiNodeSpec(ClusterClientSpec) with STMultiNod
def docOnly = { // not used, only demo
// #initialContacts
val initialContacts = Set(
ActorPath.fromString("pekko://OtherSys@host1:2552/system/receptionist"),
ActorPath.fromString("pekko://OtherSys@host2:2552/system/receptionist"))
ActorPath.fromString("pekko://OtherSys@host1:7355/system/receptionist"),
ActorPath.fromString("pekko://OtherSys@host2:7355/system/receptionist"))
val settings = ClusterClientSettings(system).withInitialContacts(initialContacts)
// #initialContacts

View file

@ -41,8 +41,8 @@ public class ClusterClientTest extends JUnitSuite {
Set<ActorPath> initialContacts() {
return new HashSet<ActorPath>(
Arrays.asList(
ActorPaths.fromString("pekko://OtherSys@host1:2552/system/receptionist"),
ActorPaths.fromString("pekko://OtherSys@host2:2552/system/receptionist")));
ActorPaths.fromString("pekko://OtherSys@host1:7355/system/receptionist"),
ActorPaths.fromString("pekko://OtherSys@host2:7355/system/receptionist")));
}
// #initialContacts

View file

@ -35,9 +35,9 @@ class ClusterClientMessageSerializerSpec extends PekkoSpec {
"be serializable" in {
val contactPoints = Vector(
"pekko://system@node-1:2552/system/receptionist",
"pekko://system@node-2:2552/system/receptionist",
"pekko://system@node-3:2552/system/receptionist")
"pekko://system@node-1:7355/system/receptionist",
"pekko://system@node-2:7355/system/receptionist",
"pekko://system@node-3:7355/system/receptionist")
checkSerialization(Contacts(contactPoints))
checkSerialization(GetContacts)
checkSerialization(Heartbeat)