Skip to content

Commit 0de74d1

Browse files
committed
Fix syntax
1 parent 8083f6e commit 0de74d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fdbclient/SpecialKeySpace.actor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ ACTOR Future<bool> checkExclusion(Database db,
10281028
// Check if we are excluding a process that serves the storage role. If this check was true once, we don't have to check any further
10291029
// since we don't case in this variable about the count of excluded storage servers but only about if we exclude any storage server with the
10301030
// provided addresses.
1031-
if !excludedAddressesContainsStorageRole {
1031+
if (!excludedAddressesContainsStorageRole) {
10321032
for (auto exclusion : addresses) {
10331033
if (exclusion.excludes(addr)) {
10341034
excludedAddressesContainsStorageRole = true;
@@ -1078,7 +1078,7 @@ ACTOR Future<bool> checkExclusion(Database db,
10781078

10791079
// If the exclusion command only contains processes that serve a non storage role we can skip the free capacity check in order to not
10801080
// block those exclusions.
1081-
if ! excludedAddressesContainsStorageRole {
1081+
if (!excludedAddressesContainsStorageRole) {
10821082
return true;
10831083
}
10841084

0 commit comments

Comments
 (0)