Explorar el Código

AsyncResult.collect must respect intermediate argument. Closes #917

Ask Solem hace 12 años
padre
commit
83bd4ef32e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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):