summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/collection_bulk_loader_impl.h
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2016-09-20 01:22:56 -0400
committerScott Hernandez <scotthernandez@gmail.com>2016-09-26 17:25:44 -0400
commit56c9b8d8cc514de6c7a9342b8f47d5e06ead0d68 (patch)
tree8cc48aa72c0e6e65f922c87b43472b6304940984 /src/mongo/db/repl/collection_bulk_loader_impl.h
parentcededadafa62177d34fb960eec90d6d30f25f943 (diff)
downloadmongo-56c9b8d8cc514de6c7a9342b8f47d5e06ead0d68.tar.gz
SERVER-26179: Have CollectionBulkLoader::init use runner to execute work, not within runner task.
Diffstat (limited to 'src/mongo/db/repl/collection_bulk_loader_impl.h')
-rw-r--r--src/mongo/db/repl/collection_bulk_loader_impl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/repl/collection_bulk_loader_impl.h b/src/mongo/db/repl/collection_bulk_loader_impl.h
index b66baeb2bae..61928e4c385 100644
--- a/src/mongo/db/repl/collection_bulk_loader_impl.h
+++ b/src/mongo/db/repl/collection_bulk_loader_impl.h
@@ -70,9 +70,7 @@ public:
std::unique_ptr<AutoGetCollection> autoColl);
virtual ~CollectionBulkLoaderImpl();
- virtual Status init(OperationContext* txn,
- Collection* coll,
- const std::vector<BSONObj>& secondaryIndexSpecs) override;
+ virtual Status init(Collection* coll, const std::vector<BSONObj>& secondaryIndexSpecs) override;
virtual Status insertDocuments(const std::vector<BSONObj>::const_iterator begin,
const std::vector<BSONObj>::const_iterator end) override;