RotationIndexer: Only one indexing try after enough rotation
Some checks failed
Build Packages / Generate python client (push) Has been cancelled
Build Packages / build:rpm (ubuntu2404) (push) Has been cancelled
Build Packages / Build documentation (push) Has been cancelled
Build Packages / Unit tests (push) Has been cancelled
Build Packages / Create release (push) Has been cancelled
Build Packages / build:rpm (rocky8_sls9) (push) Has started running
Build Packages / build:rpm (rocky9_nocuda) (push) Has been cancelled
Build Packages / build:rpm (rocky8_nocuda) (push) Has been cancelled
Build Packages / build:rpm (rocky8) (push) Has been cancelled
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Has been cancelled
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Has been cancelled
Build Packages / build:rpm (ubuntu2204) (push) Has been cancelled
Build Packages / build:rpm (rocky9) (push) Has been cancelled

This commit is contained in:
2025-12-06 11:28:48 +01:00
parent c67e5ecac7
commit 3b257ca572
4 changed files with 12 additions and 24 deletions

View File

@@ -158,6 +158,6 @@ void IndexAndRefine::ProcessImage(DataMessage &msg,
std::optional<RotationIndexerResult> IndexAndRefine::Finalize() {
if (rotation_indexer)
return rotation_indexer->Finalize();
return rotation_indexer->GetLattice();
return {};
}