bradleyayers / django-celery-transactions

Django transaction support for Celery tasks.
Other
196 stars 56 forks source link

Missing Docs about Grouping Tasks (Chords) #7

Open guettli opened 11 years ago

guettli commented 11 years ago

Please improve the documentation. How can you use Chords with django-celery-transactions?

>>> res = chord([add.s(2, 2), add.s(4, 4)])(sum_task.s())

I guess the above code does not work, since chord() creates a new task, which is not a subclass of the transaction aware Task class.