summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/sync_tail_test_fixture.cpp
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-05-30 19:12:28 -0400
committerBenety Goh <benety@mongodb.com>2018-05-30 19:12:28 -0400
commita3fb68c2b88493ee41793cde037636ce3f330058 (patch)
tree6093fca6aaa5c6259fff8266e0b0bffb00eac1b2 /src/mongo/db/repl/sync_tail_test_fixture.cpp
parentd2978d6af210356616c07193a29641a41f797d8b (diff)
downloadmongo-a3fb68c2b88493ee41793cde037636ce3f330058.tar.gz
SERVER-32335 remove multiInitialSyncApply
Replaces calls to SyncTail::multiApply with OplogApplier::multiApply
Diffstat (limited to 'src/mongo/db/repl/sync_tail_test_fixture.cpp')
-rw-r--r--src/mongo/db/repl/sync_tail_test_fixture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/sync_tail_test_fixture.cpp b/src/mongo/db/repl/sync_tail_test_fixture.cpp
index 3f6029b15a6..b3b7980a470 100644
--- a/src/mongo/db/repl/sync_tail_test_fixture.cpp
+++ b/src/mongo/db/repl/sync_tail_test_fixture.cpp
@@ -229,7 +229,7 @@ Status SyncTailTest::runOpsInitialSync(std::vector<OplogEntry> ops) {
MultiApplier::OperationPtrs opsPtrs;
opsPtrs.push_back(&op);
WorkerMultikeyPathInfo pathInfo;
- auto status = multiInitialSyncApply(_opCtx.get(), &opsPtrs, &syncTail, &pathInfo);
+ auto status = multiSyncApply(_opCtx.get(), &opsPtrs, &syncTail, &pathInfo);
if (!status.isOK()) {
return status;
}