feat(sync): Refactor Akte sync status handling and remove deprecated event step

This commit is contained in:
bsiggel
2026-03-26 13:06:32 +00:00
parent 52cee5bd16
commit 459fa41033
4 changed files with 10 additions and 445 deletions

View File

@@ -32,8 +32,8 @@ PROCESSING_ADVO_KEY = "advoware:processing_aktennummern"
DEBOUNCE_SECS = 10
BATCH_SIZE = 5 # max items to process per cron tick
VALID_ADVOWARE_STATUSES = frozenset({'import', 'neu', 'new', 'aktiv', 'active'})
VALID_AI_STATUSES = frozenset({'new', 'neu', 'aktiv', 'active'})
VALID_ADVOWARE_STATUSES = frozenset({'import', 'new', 'active'})
VALID_AI_STATUSES = frozenset({'new', 'active'})
async def handler(input_data: None, ctx: FlowContext) -> None: