mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-13 03:15:17 +00:00
fix: correct tuple unpacking in GitHub polling task queue loop
This commit is contained in:
parent
b02fa22948
commit
c8f1c03061
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ async def polling_loop():
|
|||
max_allowed_parallel_tasks = 10
|
||||
if task_queue:
|
||||
processes = []
|
||||
for i, func, args in enumerate(task_queue): # Create parallel tasks
|
||||
for i, (func, args) in enumerate(task_queue): # Create parallel tasks
|
||||
p = multiprocessing.Process(target=func, args=args)
|
||||
processes.append(p)
|
||||
p.start()
|
||||
|
|
|
|||
Loading…
Reference in a new issue