Fix argument order mismatch in PipelineController (#1407)

Co-authored-by: Bohdan Dhzus <b.dhzus@yahoo.com>
This commit is contained in:
Bohdan Dhzus 2025-04-24 15:31:07 +03:00 committed by GitHub
parent 60623d9154
commit 9541a99762
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1998,7 +1998,7 @@ class PipelineController(object):
if self._thread:
return True
self._prepare_pipeline(step_task_completed_callback, step_task_created_callback)
self._prepare_pipeline(step_task_created_callback, step_task_completed_callback)
self._thread = Thread(target=self._daemon)
self._thread.daemon = True
self._thread.start()