From 280da2c10b606017c32a86d23e8b3552ba46223e Mon Sep 17 00:00:00 2001 From: vladmandic Date: Mon, 12 Jan 2026 16:14:32 +0100 Subject: [PATCH] cleanup Signed-off-by: vladmandic --- modules/ui_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui_control.py b/modules/ui_control.py index 1beb4aa8c..27483525f 100644 --- a/modules/ui_control.py +++ b/modules/ui_control.py @@ -104,7 +104,7 @@ def generate_click(job_id: str, state: str, active_tab: str, *args): progress.record_results(job_id, results) yield return_controls(results, t) except GeneratorExit: - pass # Generator was closed by client - cleanup will run in finally + shared.log.error("Control: generator exit") except Exception as e: shared.log.error(f"Control exception: {e}") errors.display(e, 'Control')