summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@mongodb.com>2020-02-10 15:04:19 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-19 03:53:44 +0000
commit2c7e2e270bf9f907cd5608a015394f193eb1bf62 (patch)
tree155deee039a99be866130f1f49fe16a2462da357 /src/mongo/db/repl
parent06a03bc6ec3235c4ab79f7bd4e55083e3165a48b (diff)
downloadmongo-2c7e2e270bf9f907cd5608a015394f193eb1bf62.tar.gz
SERVER-46108 Improvements to validate dbtest test failure debugging
create mode 100644 src/mongo/db/storage/storage_unittest_debug_util.cpp create mode 100644 src/mongo/db/storage/storage_unittest_debug_util.h
Diffstat (limited to 'src/mongo/db/repl')
-rw-r--r--src/mongo/db/repl/replication_recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/replication_recovery.cpp b/src/mongo/db/repl/replication_recovery.cpp
index f28c9aaa2d1..760e113ab39 100644
--- a/src/mongo/db/repl/replication_recovery.cpp
+++ b/src/mongo/db/repl/replication_recovery.cpp
@@ -524,7 +524,7 @@ void ReplicationRecoveryImpl::_recoverFromUnstableCheckpoint(OperationContext* o
// timestamp to determine where to play oplog forward from. As this method shows, when a
// recovery timestamp does not exist, the applied through is used to determine where to start
// playing oplog entries from.
- opCtx->recoveryUnit()->waitUntilUnjournaledWritesDurable(opCtx);
+ opCtx->recoveryUnit()->waitUntilUnjournaledWritesDurable(opCtx, /*stableCheckpoint*/ true);
}
void ReplicationRecoveryImpl::_applyToEndOfOplog(OperationContext* opCtx,