Allow barrier timeouts to be shortened and other review fixes

This commit is contained in:
Björn Antonsson 2012-06-15 14:39:47 +02:00
parent b52da8d588
commit fd42c3d49a
32 changed files with 395 additions and 267 deletions

View file

@ -38,7 +38,7 @@ abstract class NodeMembershipSpec
runOn(first) {
startClusterNode()
}
enter("first-started")
enterBarrier("first-started")
runOn(first, second) {
cluster.join(firstAddress)
@ -50,7 +50,7 @@ abstract class NodeMembershipSpec
awaitCond(cluster.convergence.isDefined)
}
enter("after-1")
enterBarrier("after-1")
}
"(when three nodes) start gossiping to each other so that all nodes gets the same gossip info" taggedAs LongRunningTest in {
@ -66,7 +66,7 @@ abstract class NodeMembershipSpec
}
awaitCond(cluster.convergence.isDefined)
enter("after-2")
enterBarrier("after-2")
}
}
}