Browse Source

Infinite recursion error.

rnoel 13 years ago
parent
commit
2700e0f1a4
1 changed files with 1 additions and 1 deletions
  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):