blob: 2621b7470c20eaf90faebe2c72acadc3d4e95f3e [file] [log] [blame]
#
# Slow down how fast a node builds a view on the cluster by postponing when gossip settles.
#
# Note that this happens only if the node is known to be available.
#
RULE slow down falure detector
CLASS org.apache.cassandra.gms.Gossiper
METHOD realMarkAlive
AT ENTRY
IF TRUE
DO
Thread.sleep(2000);
ENDRULE