Some more small fixes for compilation
This commit is contained in:
parent
23de6fa39b
commit
63b7666f49
|
@ -23,7 +23,6 @@ set(FDBCLIENT_SRCS
|
|||
BlobWorkerInterface.h
|
||||
BlobGranuleReader.actor.cpp
|
||||
BlobGranuleReader.actor.h
|
||||
BlobGranuleCommon.cpp
|
||||
BlobGranuleCommon.h
|
||||
BlobGranuleFiles.cpp
|
||||
BlobGranuleFiles.h
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue