Browse Source

Forgot the send task result to mark_as_done

Ask Solem 16 years ago
parent
commit
7ab8558653
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/process.py

+ 1 - 1
celery/process.py

@@ -23,5 +23,5 @@ class ProcessQueue(UserList):
                         "name": task_name,
                         "id": task_id,
                         "return_value": ret_value})
-                    mark_as_done(task_id)
+                    mark_as_done(task_id, ret_value)
             self.data = []