django-celery-model
django-celery-model copied to clipboard
Using with celery primatives?
Nope, not yet. Because the model.apply_async function fires of the task directly instead of returning a task signature that could be used with those primitives.
I would be interested in this, let me know if I can help.
I just happened to see this:
result = group(signatures).apply_async()
for child in result.children:
ModelTaskMeta.objects.create(
task_id=child.id,
content_object=self,
)
Easy way to relate groups if you have a reference to the instance you want to add