disabling merge convergence check for now
This commit is contained in:
parent
150346af64
commit
340a01763b
|
@ -939,7 +939,8 @@ struct BlobGranuleCorrectnessWorkload : TestWorkload {
|
|||
|
||||
if (self->clientId == 0 && SERVER_KNOBS->BG_ENABLE_MERGING && self->doMergeCheckAtEnd) {
|
||||
TEST(true); // BGCorrectness clearing database and awaiting merge
|
||||
wait(clearAndAwaitMerge(cx, threadData->directoryRange));
|
||||
// TODO: Enable check
|
||||
// wait(clearAndAwaitMerge(cx, threadData->directoryRange));
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
|
@ -473,7 +473,8 @@ struct BlobGranuleVerifierWorkload : TestWorkload {
|
|||
|
||||
if (self->clientId == 0 && SERVER_KNOBS->BG_ENABLE_MERGING && deterministicRandom()->random01() < 0.1) {
|
||||
TEST(true); // BGV clearing database and awaiting merge
|
||||
wait(clearAndAwaitMerge(cx, normalKeys));
|
||||
// TODO: Enable check
|
||||
// wait(clearAndAwaitMerge(cx, normalKeys));
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
Loading…
Reference in New Issue