mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-11 20:27:44 +08:00
fix: skip $$-prefixed inputs in cache signature computation
This commit is contained in:
parent
3ebe1ac22e
commit
6505622b1b
@ -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]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user