mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(nodes): correctly serialize outputs
In order for delete by match to work, we need the whole invocation output to be stringified. For some reason, the serialization of the output was set to only include the `type` field. It should instead include the whole output. I don't understand how this ever worked unless pydantic had different serialization behaviour in v1 (though it appears to have been the same). Closes #5805
This commit is contained in:
parent
bab20467fb
commit
b0615bdfd4
@ -61,9 +61,7 @@ class MemoryInvocationCache(InvocationCacheBase):
|
||||
self._delete_oldest_access(number_to_delete)
|
||||
self._cache[key] = CachedItem(
|
||||
invocation_output,
|
||||
invocation_output.model_dump_json(
|
||||
warnings=False, exclude_defaults=True, exclude_unset=True, include={"type"}
|
||||
),
|
||||
invocation_output.model_dump_json(warnings=False, exclude_defaults=True, exclude_unset=True),
|
||||
)
|
||||
|
||||
def _delete_oldest_access(self, number_to_delete: int) -> None:
|
||||
|
Loading…
x
Reference in New Issue
Block a user