1
0
mirror of https://github.com/apple/foundationdb.git synced 2025-05-24 08:09:58 +08:00

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

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