From b8615263b9c904d517e36fa17a3c48cbe9e5d22d Mon Sep 17 00:00:00 2001 From: blepping Date: Wed, 22 Apr 2026 15:12:22 -0600 Subject: [PATCH] Derive InterruptProcessingException from BaseException --- comfy/model_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/model_management.py b/comfy/model_management.py index bcf1399c4..3b39d6080 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -1801,7 +1801,7 @@ def debug_memory_summary(): return torch.cuda.memory.memory_summary() return "" -class InterruptProcessingException(Exception): +class InterruptProcessingException(BaseException): pass interrupt_processing_mutex = threading.RLock()