Merge pull request #8047 from jzhou77/main
Fix a race that check happened before last configure command
This commit is contained in:
commit
7fcf839068
|
@ -284,6 +284,7 @@ struct ConfigureDatabaseWorkload : TestWorkload {
|
||||||
}
|
}
|
||||||
|
|
||||||
ACTOR Future<bool> _check(ConfigureDatabaseWorkload* self, Database cx) {
|
ACTOR Future<bool> _check(ConfigureDatabaseWorkload* self, Database cx) {
|
||||||
|
wait(delay(30.0));
|
||||||
// only storage_migration_type=gradual && perpetual_storage_wiggle=1 need this check because in QuietDatabase
|
// only storage_migration_type=gradual && perpetual_storage_wiggle=1 need this check because in QuietDatabase
|
||||||
// perpetual wiggle will be forced to close For other cases, later ConsistencyCheck will check KV store type
|
// perpetual wiggle will be forced to close For other cases, later ConsistencyCheck will check KV store type
|
||||||
// there
|
// there
|
||||||
|
|
Loading…
Reference in New Issue