瀏覽代碼

Update task.py

The `throw` behaviour should be honored in 'eager' mode as well.
Feanil Patel 10 年之前
父節點
當前提交
7bf736bfae
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      celery/app/task.py

+ 2 - 0
celery/app/task.py

@@ -595,6 +595,8 @@ class Task(object):
             # if task was executed eagerly using apply(),
             # then the retry must also be executed eagerly.
             S.apply().get()
+            if throw:
+                raise ret
             return ret
 
         try: