Correct variable for for loop to iterate over inprogress exclusions

This commit is contained in:
Johannes M. Scheuermann 2022-05-25 17:21:15 +01:00
parent 0bc8e2cea6
commit 8277965158
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ ACTOR Future<std::set<NetworkAddress>> checkForExcludingServers(Reference<IDatab
// Check if all of the specified exclusions are done.
bool allExcluded = true;
for (const auto& inProgressAddr : exclusionInProgress) {
for (const auto& inProgressAddr : inProgressExclusion) {
if (!allExcluded) {
break;
}