Send websocket message with list of cached nodes right before execution.
This commit is contained in:
parent
602095f614
commit
3a7c3acc72
|
@ -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 = []
|
||||||
|
|
Loading…
Reference in New Issue