Skip to content

Commit

Permalink
Merge pull request #4189 from sfc-gh-satherton/feature-redwood
Browse files Browse the repository at this point in the history
Feature redwood
  • Loading branch information
sfc-gh-etschannen authored Jan 6, 2021
2 parents 43a79a3 + 2ce967b commit fe28103
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fdbserver/VersionedBTree.actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1649,11 +1649,10 @@ class DWALPager : public IPager2 {

if (!cacheEntry.initialized()) {
debug_printf("DWALPager(%s) issuing actual read of %s\n", filename.c_str(), toString(pageID).c_str());
cacheEntry.readFuture = readPhysicalPage(this, (PhysicalPageID)pageID);
cacheEntry.readFuture = forwardError(readPhysicalPage(this, (PhysicalPageID)pageID), errorPromise);
cacheEntry.writeFuture = Void();
}

cacheEntry.readFuture = forwardError(cacheEntry.readFuture, errorPromise);
return cacheEntry.readFuture;
}

Expand Down

0 comments on commit fe28103

Please sign in to comment.