add information print
This commit is contained in:
parent
e78497571c
commit
cc7081c044
|
@ -640,8 +640,10 @@ ACTOR Future<Void> waitForQuietDatabase(Database cx,
|
|||
|
||||
// The quiet database check (which runs at the end of every test) will always time out due to active data movement.
|
||||
// To get around this, quiet Database will disable the perpetual wiggle in the setup phase.
|
||||
printf("Set perpetual_storage_wiggle=0 ...\n");
|
||||
wait(setPerpetualStorageWiggle(cx, false, LockAware::True));
|
||||
|
||||
printf("Set perpetual_storage_wiggle=0 Done.\n");
|
||||
|
||||
// Require 3 consecutive successful quiet database checks spaced 2 second apart
|
||||
state int numSuccesses = 0;
|
||||
|
||||
|
|
|
@ -1481,7 +1481,9 @@ ACTOR Future<Void> runTests(Reference<AsyncVar<Optional<struct ClusterController
|
|||
}
|
||||
|
||||
if (perpetualWiggleEnabled) { // restore the enabled perpetual storage wiggle setting
|
||||
printf("Set perpetual_storage_wiggle=1 ...\n");
|
||||
wait(setPerpetualStorageWiggle(cx, true, LockAware::True));
|
||||
printf("Set perpetual_storage_wiggle=1 Done.\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue