소스 검색

Infinite recursion error.

rnoel 14 년 전
부모
커밋
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):