From 7f552edc0dba042b27dc8e4f49d97e3031624bf7 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 26 Jun 2026 11:32:17 +0000 Subject: [PATCH] pass scenario id to already processed check --- scripts/trigger_modelling_e2e_sqs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/trigger_modelling_e2e_sqs.py b/scripts/trigger_modelling_e2e_sqs.py index 0733a941..e0d060d9 100644 --- a/scripts/trigger_modelling_e2e_sqs.py +++ b/scripts/trigger_modelling_e2e_sqs.py @@ -108,7 +108,7 @@ def main() -> None: completed: set[int] = set() if COMPLETED_SINCE is not None: - completed = _completed_property_ids(COMPLETED_SINCE) + completed = _completed_property_ids(COMPLETED_SINCE, SCENARIO_ID) logger.info( f"skipping {len(completed)} properties already completed since {COMPLETED_SINCE}" )