Fix an out-of-memory error

This commit is contained in:
Jingyu Zhou 2019-02-10 10:19:36 -08:00 committed by Jingyu Zhou
parent 8b1235533e
commit 0e47912192
1 changed files with 1 additions and 1 deletions

View File

@ -2314,8 +2314,8 @@ ACTOR Future<DataDistributorInterface> startDataDistributor( ClusterControllerDa
if ( e.code() != error_code_no_more_servers ) {
throw;
}
wait( delay(SERVER_KNOBS->ATTEMPT_RECRUITMENT_DELAY) );
}
wait( delay(SERVER_KNOBS->ATTEMPT_RECRUITMENT_DELAY) );
}
}