summaryrefslogtreecommitdiff
path: root/src/mongo
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo')
-rw-r--r--src/mongo/db/catalog/database_impl.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/db/catalog/database_impl.cpp b/src/mongo/db/catalog/database_impl.cpp
index 16d77cf9f14..31c1937ead2 100644
--- a/src/mongo/db/catalog/database_impl.cpp
+++ b/src/mongo/db/catalog/database_impl.cpp
@@ -223,10 +223,9 @@ Status DatabaseImpl::init(OperationContext* const opCtx) {
}
}
- // When in restore mode, views created on collections that weren't restored will be removed.
- if (storageGlobalParams.restore) {
- invariant(opCtx->lockState()->isW());
-
+ // When in restore mode, views created on collections that weren't restored will be removed. We
+ // only do this during startup when the global lock is held.
+ if (storageGlobalParams.restore && opCtx->lockState()->isW()) {
// Refresh our copy of the catalog, since we may have modified it above.
catalog = CollectionCatalog::get(opCtx);
try {