"...git@developer.sourcefind.cn:hehl2/torchaudio.git" did not exist on "3047dc9b500266d8197139fad5ef3a8a4a459985"
Commit 3a7c3acc authored by comfyanonymous's avatar comfyanonymous
Browse files

Send websocket message with list of cached nodes right before execution.

parent 602095f6
...@@ -169,6 +169,8 @@ class PromptExecutor: ...@@ -169,6 +169,8 @@ class PromptExecutor:
recursive_output_delete_if_changed(prompt, self.old_prompt, self.outputs, x) recursive_output_delete_if_changed(prompt, self.old_prompt, self.outputs, x)
current_outputs = set(self.outputs.keys()) current_outputs = set(self.outputs.keys())
if self.server.client_id is not None:
self.server.send_sync("execution_cached", { "nodes": list(current_outputs) }, self.server.client_id)
executed = set() executed = set()
try: try:
to_execute = [] to_execute = []
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment