summaryrefslogtreecommitdiff
path: root/src/mongo/db/session_catalog.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-09-06 19:01:03 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-09-06 19:01:03 -0400
commitb78e4b8e753f7980036cd51a052555a29c89bf1c (patch)
treedbc814d32dec046f43fe0156d2b624e6d66f9c77 /src/mongo/db/session_catalog.h
parent250181f4feb7ac49cec8ff7251f844d69c4710be (diff)
downloadmongo-b78e4b8e753f7980036cd51a052555a29c89bf1c.tar.gz
Revert "SERVER-30936 Ensure operation session info is initialized only once"
This reverts commit e00c6d29996ba52b5a77a072d1c5c555f62b8534.
Diffstat (limited to 'src/mongo/db/session_catalog.h')
-rw-r--r--src/mongo/db/session_catalog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/session_catalog.h b/src/mongo/db/session_catalog.h
index fa7890d1754..27aeb059669 100644
--- a/src/mongo/db/session_catalog.h
+++ b/src/mongo/db/session_catalog.h
@@ -152,7 +152,7 @@ private:
* or more times before returning. The returned 'SessionRuntimeInfo' is guaranteed to be linked
* on the catalog's _txnTable as long as the lock is held.
*/
- std::shared_ptr<SessionRuntimeInfo> _getOrCreateSessionRuntimeInfo(
+ std::shared_ptr<SessionRuntimeInfo> _getOrCreateSessionRuntimeInfo_inlock(
OperationContext* opCtx, const LogicalSessionId& lsid, stdx::unique_lock<stdx::mutex>& ul);
/**