Skip to content

Commit

Permalink
fix: Ensure chord tasks get deeply deserialised
Browse files Browse the repository at this point in the history
  • Loading branch information
maybe-sybr committed Sep 8, 2020
1 parent 76765f4 commit 0d5ce49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions celery/canvas.py
Expand Up @@ -1273,6 +1273,7 @@ class chord(Signature):
def from_dict(cls, d, app=None):
options = d.copy()
args, options['kwargs'] = cls._unpack_args(**options['kwargs'])
args = [maybe_signature(task) for task in args]
return _upgrade(d, cls(*args, app=app, **options))

@staticmethod
Expand Down

0 comments on commit 0d5ce49

Please sign in to comment.