Skip to content

Commit da50d10

Browse files
committed
Fix missing positional argument in BuildNodeBuilder
1 parent 73f85c8 commit da50d10

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build_node/build_node_builder.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ class BuildNodeBuilder(threading.Thread):
4141
"""Build thread."""
4242

4343
def __init__(
44-
self, config, thread_num, terminated_event, graceful_terminated_event
44+
self,
45+
config,
46+
thread_num,
47+
terminated_event,
48+
graceful_terminated_event,
49+
task_queue,
4550
):
4651
"""
4752
Build thread initialization.

0 commit comments

Comments
 (0)