Merge pull request #8047 from jzhou77/main

Fix a race that check happened before last configure command
This commit is contained in:
Jingyu Zhou 2022-08-30 15:27:31 -07:00 committed by GitHub
commit 7fcf839068
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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