diff --git a/fdbserver/DataDistributionQueue.actor.cpp b/fdbserver/DataDistributionQueue.actor.cpp index c6168a0569..58d4ac201d 100644 --- a/fdbserver/DataDistributionQueue.actor.cpp +++ b/fdbserver/DataDistributionQueue.actor.cpp @@ -1814,9 +1814,7 @@ ACTOR Future dataDistributionQueue(Database cx, debug_setCheckRelocationDuration(false); } } - when(KeyRange done = waitNext(rangesComplete.getFuture())) { - keysToLaunchFrom = done; - } + when(KeyRange done = waitNext(rangesComplete.getFuture())) { keysToLaunchFrom = done; } when(wait(recordMetrics)) { Promise req; getAverageShardBytes.send(req); @@ -1859,9 +1857,7 @@ ACTOR Future dataDistributionQueue(Database cx, } when(wait(self.error.getFuture())) {} // Propagate errors from dataDistributionRelocator when(wait(waitForAll(balancingFutures))) {} - when(Promise r = waitNext(getUnhealthyRelocationCount)) { - r.send(self.unhealthyRelocations); - } + when(Promise r = waitNext(getUnhealthyRelocationCount)) { r.send(self.unhealthyRelocations); } } } } catch (Error& e) {