summaryrefslogtreecommitdiff
path: root/src/mongo/db/op_observer
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/op_observer')
-rw-r--r--src/mongo/db/op_observer/op_observer_impl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/op_observer/op_observer_impl.cpp b/src/mongo/db/op_observer/op_observer_impl.cpp
index 27d718b8e1c..8cc856eb44a 100644
--- a/src/mongo/db/op_observer/op_observer_impl.cpp
+++ b/src/mongo/db/op_observer/op_observer_impl.cpp
@@ -702,8 +702,10 @@ void OpObserverImpl::onInserts(OperationContext* opCtx,
// DOES need to be -- that will cause correctness issues). Additionally, if the user tried
// to insert measurements with dates outside the standard range, chances are they will do so
// again, and we will have only set the flag a little early.
+ invariant(opCtx->lockState()->isCollectionLockedForMode(nss, MODE_IX));
auto bucketsColl =
CollectionCatalog::get(opCtx)->lookupCollectionByNamespaceForRead(opCtx, nss);
+ uassert(ErrorCodes::NamespaceNotFound, "Could not find collection for write", bucketsColl);
auto timeSeriesOptions = bucketsColl->getTimeseriesOptions();
if (timeSeriesOptions.has_value()) {
if (auto currentSetting = bucketsColl->getRequiresTimeseriesExtendedRangeSupport();