summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/implicit_create_collection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/implicit_create_collection.cpp')
-rw-r--r--src/mongo/db/s/implicit_create_collection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/implicit_create_collection.cpp b/src/mongo/db/s/implicit_create_collection.cpp
index c15fc331d41..0ad6e536658 100644
--- a/src/mongo/db/s/implicit_create_collection.cpp
+++ b/src/mongo/db/s/implicit_create_collection.cpp
@@ -93,7 +93,7 @@ public:
// Take the DBLock and CollectionLock directly rather than using AutoGetCollection
// (which calls AutoGetDb) to avoid doing database and shard version checks.
Lock::DBLock dbLock(opCtx, _ns.db(), MODE_IS);
- const auto db = dbHolder().get(opCtx, _ns.db());
+ const auto db = DatabaseHolder::getDatabaseHolder().get(opCtx, _ns.db());
if (db) {
Lock::CollectionLock collLock(opCtx->lockState(), _ns.ns(), MODE_IS);
if (db->getCollection(opCtx, _ns.ns())) {