summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/durable_catalog_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/durable_catalog_test.cpp')
-rw-r--r--src/mongo/db/storage/kv/durable_catalog_test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/storage/kv/durable_catalog_test.cpp b/src/mongo/db/storage/kv/durable_catalog_test.cpp
index c240f2dd9f3..5f371ee9b57 100644
--- a/src/mongo/db/storage/kv/durable_catalog_test.cpp
+++ b/src/mongo/db/storage/kv/durable_catalog_test.cpp
@@ -111,8 +111,10 @@ public:
getCatalog()->getMetaData(operationContext(), catalogId),
std::move(coll.second));
CollectionCatalog::write(operationContext(), [&](CollectionCatalog& catalog) {
- catalog.registerCollection(
- operationContext(), options.uuid.value(), std::move(collection));
+ catalog.registerCollection(operationContext(),
+ options.uuid.value(),
+ std::move(collection),
+ /*ts=*/boost::none);
});
wuow.commit();