فهرست منبع

AsyncResult.collect must respect intermediate argument. Closes #917

Ask Solem 12 سال پیش
والد
کامیت
83bd4ef32e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      celery/result.py

+ 1 - 1
celery/result.py

@@ -149,7 +149,7 @@ class AsyncResult(ResultBase):
             [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
 
         """
-        for _, R in self.iterdeps():
+        for _, R in self.iterdeps(intermediate=intermediate):
             yield R, R.get(**kwargs)
 
     def get_leaf(self):