diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2018-09-07 13:30:43 -0400 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2018-09-07 13:30:43 -0400 |
commit | 4c4c76ec1be5edb1d7560aecfe4ac7f5ada7ba00 (patch) | |
tree | e73893dbd30897bb74c10fb2295c0d279b6e10cc /src/mongo/db/op_observer_registry.h | |
parent | cbfd82be9efa5e0f6dd45d974d7fc729b989cb9c (diff) | |
download | mongo-4c4c76ec1be5edb1d7560aecfe4ac7f5ada7ba00.tar.gz |
SERVER-36472 Convert OptionalCollectionUUID in OpObserver::onCreateIndex to CollectionUUID
Diffstat (limited to 'src/mongo/db/op_observer_registry.h')
-rw-r--r-- | src/mongo/db/op_observer_registry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/op_observer_registry.h b/src/mongo/db/op_observer_registry.h index a89950d81cd..d9536348d0e 100644 --- a/src/mongo/db/op_observer_registry.h +++ b/src/mongo/db/op_observer_registry.h @@ -58,7 +58,7 @@ public: void onCreateIndex(OperationContext* const opCtx, const NamespaceString& nss, - OptionalCollectionUUID uuid, + CollectionUUID uuid, BSONObj indexDoc, bool fromMigrate) override { ReservedTimes times{opCtx}; |