change default port number to 7355
This commit is contained in:
parent
defddc6af5
commit
785369030d
59 changed files with 215 additions and 215 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue