瀏覽代碼

ResultSet: Results created from string now have the app properly set

Conflicts:
	celery/result.py
Ask Solem 11 年之前
父節點
當前提交
b2c1095260
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      celery/result.py

+ 1 - 1
celery/result.py

@@ -312,7 +312,7 @@ class ResultSet(ResultBase):
 
         """
         if isinstance(result, basestring):
-            result = AsyncResult(result)
+            result = self.app.AsyncResult(result)
         try:
             self.results.remove(result)
         except ValueError: