Some more small fixes for compilation

This commit is contained in:
Suraj Gupta 2021-11-24 10:17:55 -05:00 committed by Josh Slocum
parent 23de6fa39b
commit 63b7666f49
3 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,6 @@ set(FDBCLIENT_SRCS
BlobWorkerInterface.h
BlobGranuleReader.actor.cpp
BlobGranuleReader.actor.h
BlobGranuleCommon.cpp
BlobGranuleCommon.h
BlobGranuleFiles.cpp
BlobGranuleFiles.h

View File

@ -29,7 +29,7 @@
// Gets the latest granule history node for range that was persisted
ACTOR Future<Optional<GranuleHistory>> getLatestGranuleHistory(Transaction* tr, KeyRange range) {
KeyRange historyRange = blobGranuleHistoryKeyRangeFor(range);
state KeyRange historyRange = blobGranuleHistoryKeyRangeFor(range);
state RangeResult result;
loop {

View File

@ -1831,6 +1831,7 @@ ACTOR Future<Void> blobManager(BlobManagerInterface bmInterf,
self.addActor.send(monitorClientRanges(&self));
self.addActor.send(rangeAssigner(&self));
self.addActor.send(monitorPruneKeys(&self));
if (BUGGIFY) {
self.addActor.send(chaosRangeMover(&self));