disable attrition injection for another rocks specific test
This commit is contained in:
parent
d97c064314
commit
47eef84d8d
|
@ -66,7 +66,10 @@ struct SSCheckpointRestoreWorkload : TestWorkload {
|
|||
return _start(this, cx);
|
||||
}
|
||||
|
||||
void disableFailureInjectionWorkloads(std::set<std::string>& out) const override { out.insert("RandomMoveKeys"); }
|
||||
void disableFailureInjectionWorkloads(std::set<std::string>& out) const override {
|
||||
out.insert("RandomMoveKeys");
|
||||
out.insert("Attrition");
|
||||
}
|
||||
|
||||
ACTOR Future<Void> _start(SSCheckpointRestoreWorkload* self, Database cx) {
|
||||
state Key key = "TestKey"_sr;
|
||||
|
|
Loading…
Reference in New Issue