Skip to content

Commit 38852e7

Browse files
committed
Merge branch 'release/0.6.2'
2 parents abb3edf + 88573d7 commit 38852e7

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.6.2
2+
---
3+
4+
### BUG Fix
5+
6+
1. Fixed ExecutionTime throwing an error during execution after the latest ComfyUI [513b0c46](https://github.com/comfyanonymous/ComfyUI/commit/513b0c46fba3bf40191d684ff81207ad935f1717) update.
7+
18
0.6.1
29
---
310

nodes/execution_time.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,22 +76,22 @@ def handle_execute(class_type, last_node_id, prompt_id, server, unique_id):
7676

7777
if inspect.iscoroutinefunction(origin_execute):
7878
async def dev_utils_execute(server, dynprompt, caches, current_item, extra_data, executed, prompt_id,
79-
execution_list, pending_subgraph_results, pending_async_nodes):
79+
execution_list, pending_subgraph_results, pending_async_nodes, *args, **kwargs):
8080
unique_id = current_item
8181
class_type = dynprompt.get_node(unique_id)['class_type']
8282
last_node_id = server.last_node_id
8383
result = await origin_execute(server, dynprompt, caches, current_item, extra_data, executed, prompt_id,
84-
execution_list, pending_subgraph_results, pending_async_nodes)
84+
execution_list, pending_subgraph_results, pending_async_nodes, *args, **kwargs)
8585
handle_execute(class_type, last_node_id, prompt_id, server, unique_id)
8686
return result
8787
else:
8888
def dev_utils_execute(server, dynprompt, caches, current_item, extra_data, executed, prompt_id,
89-
execution_list, pending_subgraph_results):
89+
execution_list, pending_subgraph_results, *args, **kwargs):
9090
unique_id = current_item
9191
class_type = dynprompt.get_node(unique_id)['class_type']
9292
last_node_id = server.last_node_id
9393
result = origin_execute(server, dynprompt, caches, current_item, extra_data, executed, prompt_id,
94-
execution_list, pending_subgraph_results)
94+
execution_list, pending_subgraph_results, *args, **kwargs)
9595
handle_execute(class_type, last_node_id, prompt_id, server, unique_id)
9696
return result
9797

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-dev-utils"
33
description = "Execution Time Analysis, Reroute Enhancement, Node collection for developers."
4-
version = "0.6.1"
4+
version = "0.6.2"
55
license = { text = "MIT License" }
66
dependencies = ["aiohttp-sse"]
77

0 commit comments

Comments
 (0)