summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_common.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/service_entry_point_common.cpp
parent80f9a13324fc36b2deb400e5a185968f6fa8f64a (diff)
downloadmongo-b54d9905a167867a2655910799573378aff2ce89.tar.gz
SERVER-37456 Make the global CursorManager a decoration on ServiceContext
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 e9519e89b80..2142a5b7faa 100644
--- a/src/mongo/db/service_entry_point_common.cpp
+++ b/src/mongo/db/service_entry_point_common.cpp
@@ -1108,7 +1108,7 @@ DbResponse receivedGetMore(OperationContext* opCtx,
//
// If killing the cursor fails, ignore the error and don't try again. The cursor should
// be reaped by the client cursor timeout thread.
- CursorManager::getGlobalCursorManager()
+ CursorManager::get(opCtx)
->killCursor(opCtx, cursorid, false /* shouldAudit */)
.ignore();
}