From 200042faaadc46dcc4b969fedf65d3751e61ec9c Mon Sep 17 00:00:00 2001 From: swu4bnl Date: Wed, 16 Sep 2026 13:42:17 -0400 Subject: [PATCH] Disable stitch task Disable the stitch task --- end_of_run_workflow.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/end_of_run_workflow.py b/end_of_run_workflow.py index 4511d49..beeb55e 100644 --- a/end_of_run_workflow.py +++ b/end_of_run_workflow.py @@ -147,6 +147,8 @@ def end_of_run_workflow( pending = [linker_task, validation_task] stitch_task = None + stitch.enabled = False + if stitch.enabled: stitch_task = run_auto_stitch_anchor.submit(uid, api_key=api_key, stitch_config=stitch.config) logger.info("Launched anchor auto-stitch task")