Fixed minor check: checking on 'address' equality instead of 'port'
This commit is contained in:
parent
a66ababd27
commit
faed944590
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ trait MultiNodeClusterSpec { self: MultiNodeSpec ⇒
|
|||
awaitCond(cluster.convergence.isDefined, timeout)
|
||||
if (!canNotBePartOfMemberRing.isEmpty) // don't run this on an empty set
|
||||
awaitCond(
|
||||
canNotBePartOfMemberRing forall (address => !(cluster.latestGossip.members exists (_.address.port == address.port))),
|
||||
canNotBePartOfMemberRing forall (address => !(cluster.latestGossip.members exists (_.address == address))),
|
||||
timeout)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue