瀏覽代碼

Infinite recursion error.

rnoel 13 年之前
父節點
當前提交
2700e0f1a4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      celery/datastructures.py

+ 1 - 1
celery/datastructures.py

@@ -311,7 +311,7 @@ class LocalCache(OrderedDict):
 
     def pop(self, key, *args):
         with self.lock:
-            self.pop(key, *args)
+            super(LocalCache, self).pop(key, *args)
 
 
 class TokenBucket(object):