hide block not found error when not in debug mode
[p2pool.git] / p2pool / util / deferral.py
index 101d155..20f5ec8 100644 (file)
@@ -162,6 +162,8 @@ class DeferredCacher(object):
                 self.waiting.pop(key).callback(None)
             def eb(fail):
                 self.waiting.pop(key).callback(None)
+                if fail.check(RetrySilentlyException):
+                    return
                 print
                 print 'Error when requesting noncached value:'
                 fail.printTraceback()