Browse Source

wait_for() now reraises the exception if status is FAILURE.

Ask Solem 16 years ago
parent
commit
a4725a1e6a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      celery/backends/base.py

+ 2 - 0
celery/backends/base.py

@@ -50,6 +50,8 @@ class BaseBackend(object):
             status = self.get_status(task_id)
             if status == "DONE":
                 return self.get_result(task_id)
+            elif status == "FAILURE":
+                raise self.get_result(task_id)
             if timeout and time.time() > time_start + timeout:
                 raise self.TimeOutError(
                         "Timed out while waiting for task %s" % (task_id))