From 6505622b1bbe7990cc9d925bddcf610858dbdc16 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Wed, 25 Feb 2026 17:51:50 +0200 Subject: [PATCH] fix: skip $$-prefixed inputs in cache signature computation --- comfy_execution/caching.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_execution/caching.py b/comfy_execution/caching.py index 326a279fc..f8a14e715 100644 --- a/comfy_execution/caching.py +++ b/comfy_execution/caching.py @@ -117,6 +117,8 @@ class CacheKeySetInputSignature(CacheKeySet): signature.append(node_id) inputs = node["inputs"] for key in sorted(inputs.keys()): + if key.startswith("$$"): + continue if is_link(inputs[key]): (ancestor_id, ancestor_socket) = inputs[key] ancestor_index = ancestor_order_mapping[ancestor_id]