Browse Source

Fix pickling error with AsyncResult

Thomas Minor 12 years ago
parent
commit
fd89eb8d0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/result.py

+ 1 - 1
celery/result.py

@@ -210,7 +210,7 @@ class AsyncResult(ResultBase):
         return self.__class__, self.__reduce_args__()
 
     def __reduce_args__(self):
-        return self.id, self.backend, self.task_name, self.parent
+        return self.id, self.backend, self.task_name, self.app, self.parent
 
     @cached_property
     def graph(self):