summaryrefslogtreecommitdiff
path: root/src/mongo/db/index_build_entry_helpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/index_build_entry_helpers.cpp')
-rw-r--r--src/mongo/db/index_build_entry_helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index_build_entry_helpers.cpp b/src/mongo/db/index_build_entry_helpers.cpp
index df3ef2ebfb2..5d5048945a1 100644
--- a/src/mongo/db/index_build_entry_helpers.cpp
+++ b/src/mongo/db/index_build_entry_helpers.cpp
@@ -108,7 +108,7 @@ void ensureIndexBuildEntriesNamespaceExists(OperationContext* opCtx) {
WriteUnitOfWork wuow(opCtx);
CollectionOptions options;
Collection* collection = db->createCollection(
- opCtx, NamespaceString::kIndexBuildEntryNamespace.ns(), options);
+ opCtx, NamespaceString::kIndexBuildEntryNamespace, options);
// Ensure the collection exists.
invariant(collection);