Skip to content

Commit

Permalink
fixup! fix: Ensure group tasks are deeply deserialised
Browse files Browse the repository at this point in the history
  • Loading branch information
maybe-sybr committed Sep 16, 2020
1 parent 63d7558 commit 7437342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celery/canvas.py
Expand Up @@ -1028,7 +1028,7 @@ class group(Signature):

@classmethod
def from_dict(cls, d, app=None):
tasks = [maybe_signature(task) for task in d["kwargs"]["tasks"]]
tasks = [maybe_signature(task, app=app) for task in d["kwargs"]["tasks"]]
return _upgrade(
d, group(tasks, app=app, **d['options']),
)
Expand Down

0 comments on commit 7437342

Please sign in to comment.