Browse Source

Fixes fallback chord result passing bug. Closes #1216

Ask Solem 12 years ago
parent
commit
d2f5a9a1e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/backends/base.py

+ 1 - 1
celery/backends/base.py

@@ -280,7 +280,7 @@ class BaseBackend(object):
 
     def fallback_chord_unlock(self, group_id, body, result=None,
                               countdown=1, **kwargs):
-        kwargs['result'] = [r.id for r in result]
+        kwargs['result'] = [r.serializable() for r in result]
         self.app.tasks['celery.chord_unlock'].apply_async(
             (group_id, body, ), kwargs, countdown=countdown,
         )