summaryrefslogtreecommitdiff
path: root/src/mongo/db/logical_session_cache_impl.cpp
diff options
context:
space:
mode:
authorAnton Korshunov <anton.korshunov@mongodb.com>2019-02-07 11:34:26 +0000
committerAnton Korshunov <anton.korshunov@mongodb.com>2019-02-11 15:55:15 +0000
commitb54d9905a167867a2655910799573378aff2ce89 (patch)
treee11c129d50e07c288d08a04963068164d7174c05 /src/mongo/db/logical_session_cache_impl.cpp
parent80f9a13324fc36b2deb400e5a185968f6fa8f64a (diff)
downloadmongo-b54d9905a167867a2655910799573378aff2ce89.tar.gz
SERVER-37456 Make the global CursorManager a decoration on ServiceContext
Diffstat (limited to 'src/mongo/db/logical_session_cache_impl.cpp')
-rw-r--r--src/mongo/db/logical_session_cache_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/logical_session_cache_impl.cpp b/src/mongo/db/logical_session_cache_impl.cpp
index f7afce2fc3a..cb7270d10c5 100644
--- a/src/mongo/db/logical_session_cache_impl.cpp
+++ b/src/mongo/db/logical_session_cache_impl.cpp
@@ -385,7 +385,7 @@ void LogicalSessionCacheImpl::_refresh(Client* client) {
KillAllSessionsByPatternSet patterns;
- auto openCursorSessions = _service->getOpenCursorSessions();
+ auto openCursorSessions = _service->getOpenCursorSessions(opCtx);
// Exclude sessions added to _activeSessions from the openCursorSession to avoid race between
// killing cursors on the removed sessions and creating sessions.
{