Correct variable for for loop to iterate over inprogress exclusions
This commit is contained in:
parent
0bc8e2cea6
commit
8277965158
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue