summaryrefslogtreecommitdiffstats
path: root/searchlib/src/apps
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2023-03-13 13:55:29 +0000
committerGeir Storli <geirst@yahooinc.com>2023-03-13 13:59:08 +0000
commit0c657642eff7d85c000464e9edba16ded4845e7d (patch)
tree3315f420e49dd85739089780388007ce1649672a /searchlib/src/apps
parenta40183094fd45dbf320dd57f8d56a5a6fac7f247 (diff)
Reduce creation of Document instances without DocumentTypeRepo.
Diffstat (limited to 'searchlib/src/apps')
-rw-r--r--searchlib/src/apps/tests/memoryindexstress_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/searchlib/src/apps/tests/memoryindexstress_test.cpp b/searchlib/src/apps/tests/memoryindexstress_test.cpp
index fb743ad93ac..fdb132d9a36 100644
--- a/searchlib/src/apps/tests/memoryindexstress_test.cpp
+++ b/searchlib/src/apps/tests/memoryindexstress_test.cpp
@@ -153,8 +153,7 @@ makeDoc(const DocumentTypeRepo &repo, uint32_t i,
idstr << "id:test:test:: " << i;
DocumentId id(idstr.str());
const DocumentType *docType = repo.getDocumentType(doc_type_name);
- auto doc(std::make_unique<Document>(*docType, id));
- doc->setRepo(repo);
+ auto doc(std::make_unique<Document>(repo, *docType, id));
if (!titleString.empty()) {
setFieldValue(*doc, title, titleString);
}