summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplog_applier.cpp
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-05-04 10:48:16 -0400
committerBenety Goh <benety@mongodb.com>2018-05-04 10:48:16 -0400
commitf52a9687dff3b08770856d800272c642788427bb (patch)
treeb7ae7b8e12325d1cf89c729e3f6281aa29b1e751 /src/mongo/db/repl/oplog_applier.cpp
parent15cc57450b4de8ced936767c8160bc6a7dc3c76a (diff)
downloadmongo-f52a9687dff3b08770856d800272c642788427bb.tar.gz
SERVER-32334 SyncTail accepts optional OplogApplier::Options
Diffstat (limited to 'src/mongo/db/repl/oplog_applier.cpp')
-rw-r--r--src/mongo/db/repl/oplog_applier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/oplog_applier.cpp b/src/mongo/db/repl/oplog_applier.cpp
index 1791f45566a..1f573cb72c2 100644
--- a/src/mongo/db/repl/oplog_applier.cpp
+++ b/src/mongo/db/repl/oplog_applier.cpp
@@ -56,7 +56,7 @@ OplogApplier::OplogApplier(executor::TaskExecutor* executor,
_storageInterface(storageInterface),
_options(options),
_syncTail(std::make_unique<SyncTail>(
- _observer, _consistencyMarkers, _storageInterface, multiSyncApply, writerPool)) {
+ _observer, _consistencyMarkers, _storageInterface, multiSyncApply, writerPool, options)) {
invariant(!options.allowNamespaceNotFoundErrorsOnCrudOps);
invariant(!options.relaxUniqueIndexConstraints);
}