CommitSubtree was still doing non-caching reads, this was unintentional.
This commit is contained in:
parent
8a5caeb756
commit
8b0f03f6e8
|
@ -5641,7 +5641,7 @@ private:
|
|||
debug_printf("%s -------------------------------------\n", context.c_str());
|
||||
}
|
||||
|
||||
state Reference<const ArenaPage> page = wait(readPage(snapshot, rootID, height - 1, false, false));
|
||||
state Reference<const ArenaPage> page = wait(readPage(snapshot, rootID, height - 1, false, true));
|
||||
state Version writeVersion = self->getLastCommittedVersion() + 1;
|
||||
|
||||
// If the page exists in the cache, it must be copied before modification.
|
||||
|
|
Loading…
Reference in New Issue