fix: align ci with organization redesign
Some checks failed
CI/CD Pipeline / Quality Gate (push) Failing after 18s
CI/CD Pipeline / Build and Push Images (push) Has been skipped
CI/CD Pipeline / Internal Notify (push) Successful in 0s
CI/CD Pipeline / Deploy Dev via Compose (push) Has been skipped

This commit is contained in:
2026-06-07 16:43:30 +02:00
parent 802257a757
commit 71eac688f2
10 changed files with 82 additions and 754 deletions

View File

@@ -292,9 +292,11 @@ class OrganizationSourceIngestionService:
normalized_records: list[_NormalizedRecordInput],
) -> tuple[dict[int, Organization], int]:
"""Compatibility wrapper; parser ingestion must not create organizations."""
organizations, _skipped_unmatched, _skipped_ambiguous = (
cls._resolve_existing_organizations(normalized_records)
)
(
organizations,
_skipped_unmatched,
_skipped_ambiguous,
) = cls._resolve_existing_organizations(normalized_records)
return organizations, 0
@classmethod