summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_common.cpp
diff options
context:
space:
mode:
authorEsha Maharishi <esha.maharishi@mongodb.com>2018-11-12 14:04:22 -0500
committerEsha Maharishi <esha.maharishi@mongodb.com>2018-11-12 15:21:22 -0500
commit04141490b2d5cc66be2457d3090292526dc37e4c (patch)
tree5df170aaafe2c05a5667d03dd4e6df6350afdeaf /src/mongo/db/service_entry_point_common.cpp
parent774209d199f0ff08372bdbc93b68a0245c9e627c (diff)
downloadmongo-04141490b2d5cc66be2457d3090292526dc37e4c.tar.gz
SERVER-38095 Remove unused OperationSessionInfoFromClient argument to OperationContextSessionMongod constructor
Diffstat (limited to 'src/mongo/db/service_entry_point_common.cpp')
-rw-r--r--src/mongo/db/service_entry_point_common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/service_entry_point_common.cpp b/src/mongo/db/service_entry_point_common.cpp
index d8197467e4a..a0d7f96ff02 100644
--- a/src/mongo/db/service_entry_point_common.cpp
+++ b/src/mongo/db/service_entry_point_common.cpp
@@ -557,7 +557,7 @@ void execCommandDatabase(OperationContext* opCtx,
// session.
const bool shouldCheckOutSession = static_cast<bool>(sessionOptions.getTxnNumber()) &&
!shouldCommandSkipSessionCheckout(command->getName());
- OperationContextSessionMongod sessionTxnState(opCtx, shouldCheckOutSession, sessionOptions);
+ OperationContextSessionMongod sessionTxnState(opCtx, shouldCheckOutSession);
std::unique_ptr<MaintenanceModeSetter> mmSetter;