use of org.apache.cassandra.distributed.impl.InstanceKiller in project cassandra by apache.
the class FailingRepairTest method cleanupState.
@Before
public void cleanupState() {
for (int i = 1; i <= CLUSTER.size(); i++) {
IInvokableInstance inst = CLUSTER.get(i);
if (inst.isShutdown())
inst.startup();
inst.runOnInstance(InstanceKiller::clear);
}
}
Aggregations