summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_context_d.cpp
diff options
context:
space:
mode:
authorsamantharitter <samantha.ritter@10gen.com>2017-04-05 16:48:16 -0400
committersamantharitter <samantha.ritter@10gen.com>2017-04-12 13:17:21 -0400
commit7dc10fd9d845756bb983fe1637dece6f3d37b981 (patch)
treefdb3d1042f0cfa4c5f1eb5b5994615021d174f99 /src/mongo/db/service_context_d.cpp
parent56b8f03ca7c0c6a315a30a7a41bd781540dedde8 (diff)
downloadmongo-7dc10fd9d845756bb983fe1637dece6f3d37b981.tar.gz
SERVER-28298 Allow OperationContext objects to be created with an optional LogicalSessionId
Diffstat (limited to 'src/mongo/db/service_context_d.cpp')
-rw-r--r--src/mongo/db/service_context_d.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/service_context_d.cpp b/src/mongo/db/service_context_d.cpp
index b04012a8e51..a5debda247f 100644
--- a/src/mongo/db/service_context_d.cpp
+++ b/src/mongo/db/service_context_d.cpp
@@ -265,9 +265,11 @@ const StorageEngine::Factory* StorageFactoriesIteratorMongoD::next() {
return _curr++->second;
}
-std::unique_ptr<OperationContext> ServiceContextMongoD::_newOpCtx(Client* client, unsigned opId) {
+std::unique_ptr<OperationContext> ServiceContextMongoD::_newOpCtx(
+ Client* client, unsigned opId, boost::optional<LogicalSessionId> lsid) {
invariant(&cc() == client);
- return std::unique_ptr<OperationContextImpl>(new OperationContextImpl(client, opId));
+ return std::unique_ptr<OperationContextImpl>(
+ new OperationContextImpl(client, opId, std::move(lsid)));
}
void ServiceContextMongoD::setOpObserver(std::unique_ptr<OpObserver> opObserver) {