summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplog_applier_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/oplog_applier_impl.cpp')
-rw-r--r--src/mongo/db/repl/oplog_applier_impl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/repl/oplog_applier_impl.cpp b/src/mongo/db/repl/oplog_applier_impl.cpp
index b000e006620..5574f77deb5 100644
--- a/src/mongo/db/repl/oplog_applier_impl.cpp
+++ b/src/mongo/db/repl/oplog_applier_impl.cpp
@@ -46,7 +46,8 @@ OplogApplierImpl::OplogApplierImpl(executor::TaskExecutor* executor,
: OplogApplier(executor, oplogBuffer, observer),
_replCoord(replCoord),
_syncTail(std::make_unique<SyncTail>(
- observer, consistencyMarkers, storageInterface, multiSyncApply, writerPool, options)) {
+ observer, consistencyMarkers, storageInterface, multiSyncApply, writerPool, options)),
+ _beginApplyingOpTime(options.beginApplyingOpTime) {
invariant(!options.relaxUniqueIndexConstraints);
}