mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-25 05:40:15 +08:00
Fix an overly aggressive assertion.
This could happen when attempting to evaluate `IS_CHANGED` for a node during the creation of the cache (in order to create the cache key).
This commit is contained in:
parent
12627ca75a
commit
9c1e3f7b98
@ -172,7 +172,8 @@ class BasicCache:
|
|||||||
self.cache[cache_key] = value
|
self.cache[cache_key] = value
|
||||||
|
|
||||||
def _get_immediate(self, node_id):
|
def _get_immediate(self, node_id):
|
||||||
assert self.cache_key_set is not None
|
if self.cache_key_set is None:
|
||||||
|
return None
|
||||||
cache_key = self.cache_key_set.get_data_key(node_id)
|
cache_key = self.cache_key_set.get_data_key(node_id)
|
||||||
if cache_key in self.cache:
|
if cache_key in self.cache:
|
||||||
return self.cache[cache_key]
|
return self.cache[cache_key]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user