summaryrefslogtreecommitdiff
path: root/src/mongo/db/op_observer_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/op_observer_registry.h')
-rw-r--r--src/mongo/db/op_observer_registry.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/op_observer_registry.h b/src/mongo/db/op_observer_registry.h
index c14123c3e5f..ca593c0f9aa 100644
--- a/src/mongo/db/op_observer_registry.h
+++ b/src/mongo/db/op_observer_registry.h
@@ -140,10 +140,11 @@ public:
void aboutToDelete(OperationContext* const opCtx,
const NamespaceString& nss,
+ const UUID& uuid,
const BSONObj& doc) override {
ReservedTimes times{opCtx};
for (auto& o : _observers)
- o->aboutToDelete(opCtx, nss, doc);
+ o->aboutToDelete(opCtx, nss, uuid, doc);
}
void onDelete(OperationContext* const opCtx,