From f3c003dd202cffc4a05f298c82ed15d23a930ea7 Mon Sep 17 00:00:00 2001 From: craftingmod Date: Tue, 30 Jun 2026 07:28:05 +0900 Subject: [PATCH] fix(cnr): propagate asyncio.TimeoutError in _get_cnr_data for correct bubble up --- glob/cnr_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glob/cnr_utils.py b/glob/cnr_utils.py index 744da535..65164595 100644 --- a/glob/cnr_utils.py +++ b/glob/cnr_utils.py @@ -220,6 +220,8 @@ async def _get_cnr_data(sync_mode=None, dont_wait=True, **kwargs): } manager_util.save_to_cache(uri, cache_to_save) return json_obj['nodes'] + except asyncio.TimeoutError: + raise except Exception as e: logging.error(f"[ComfyUI-Manager] Cannot connect to comfyregistry or failed sync: {e}") if cached_data is not None: