aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2010-08-30 00:25:40 +0000
committerRob Austein <sra@hactrn.net>2010-08-30 00:25:40 +0000
commit97d079cef9db142ef7dee6bf214f96b1d63f1249 (patch)
tree24b81633f05b135861247124dc4246c6881ddd02
parent376316916567bf253a57a909d0cd53d2bd53583d (diff)
Another dropped exception event, sigh.
svn path=/rpkid/rpki/https.py; revision=3432
-rw-r--r--rpkid/rpki/https.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/rpkid/rpki/https.py b/rpkid/rpki/https.py
index ea9b6043..99aebd12 100644
--- a/rpkid/rpki/https.py
+++ b/rpkid/rpki/https.py
@@ -1091,9 +1091,10 @@ class http_queue(object):
req.errback(result)
except (rpki.async.ExitNow, SystemExit):
raise
- except:
- self.log("Unhandled exception from callback")
- rpki.log.traceback()
+ except Exception, e:
+ self.log("Unhandled exception %r from callback: %s" % (e, e), rpki.log.warn)
+ #rpki.log.traceback()
+ req.errback(e)
self.log("Queue: %r" % self.queue)