summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_cursor.cpp
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2018-03-01 11:44:30 -0500
committerLouis Williams <louis.williams@mongodb.com>2018-03-01 11:44:30 -0500
commit9cec63d67ed2f63d26303a1c44189e1ac73d167a (patch)
tree50909ea4c350d0693f081891fdf30e611b6a4af9 /src/mongo/db/pipeline/document_source_cursor.cpp
parent7d7969eb7439b08207e29437e94fc1db5459c205 (diff)
downloadmongo-9cec63d67ed2f63d26303a1c44189e1ac73d167a.tar.gz
SERVER-32638 Rename interruptable to interruptible
Diffstat (limited to 'src/mongo/db/pipeline/document_source_cursor.cpp')
-rw-r--r--src/mongo/db/pipeline/document_source_cursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/document_source_cursor.cpp b/src/mongo/db/pipeline/document_source_cursor.cpp
index 9e6f2f0bd50..b090f195bbe 100644
--- a/src/mongo/db/pipeline/document_source_cursor.cpp
+++ b/src/mongo/db/pipeline/document_source_cursor.cpp
@@ -265,7 +265,7 @@ void DocumentSourceCursor::cleanupExecutor() {
// return nullptr if the collection has since turned into a view. In this case, '_exec' will
// already have been marked as killed when the collection was dropped, and we won't need to
// access the CursorManager to properly dispose of it.
- UninterruptableLockGuard noInterrupt(opCtx->lockState());
+ UninterruptibleLockGuard noInterrupt(opCtx->lockState());
AutoGetDb dbLock(opCtx, _exec->nss().db(), MODE_IS);
Lock::CollectionLock collLock(opCtx->lockState(), _exec->nss().ns(), MODE_IS);
auto collection = dbLock.getDb() ? dbLock.getDb()->getCollection(opCtx, _exec->nss()) : nullptr;