Addressed simple review comments

This commit is contained in:
Balachandar Namasivayam 2020-03-31 18:25:11 -07:00
parent a70bfcc3c8
commit a5af31de23
2 changed files with 3 additions and 3 deletions

View File

@ -173,8 +173,8 @@ public:
bool DD_VALIDATE_LOCALITY;
int DD_CHECK_INVALID_LOCALITY_DELAY;
bool DD_ENABLE_VERBOSE_TRACING;
int64_t DD_SS_FAILURE_VERSIONLAG;
int64_t DD_SS_ALLOWED_VERSIONLAG;
int64_t DD_SS_FAILURE_VERSIONLAG; // Allowed SS version lag from the current read version before marking it as failed.
int64_t DD_SS_ALLOWED_VERSIONLAG; // SS will be marked as healthy if it's version lag goes below this value.
// TeamRemover to remove redundant teams
bool TR_FLAG_DISABLE_MACHINE_TEAM_REMOVER; // disable the machineTeamRemover actor

View File

@ -68,7 +68,7 @@ struct KillRegionWorkload : TestWorkload {
ACTOR static Future<Void> waitForStorageRecovered( KillRegionWorkload *self ) {
while( self->dbInfo->get().recoveryState < RecoveryState::STORAGE_RECOVERED ) {
wait( self->dbInfo->onChange() );
wait( self->dbInfo->onChange() );
}
return Void();
}