Skip to content

Commit eccd61a

Browse files
committed
Properly call chord
1 parent 0765c2f commit eccd61a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/core/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def broadcast(type, task, args, kwargs=None, callback=None): # pylint: disable=
4646
task_sig = task.s(*args, **kwargs).set(queue=server)
4747
tasks.append(task_sig)
4848
if callback:
49-
task_promise = chord(*tasks)(callback).get()
49+
task_promise = chord(tasks)(callback).get()
5050
log.debug('Sent Chord: {}'.format(locals()))
5151
else:
5252
task_promise = group(*tasks).apply_async()

0 commit comments

Comments
 (0)