diff options
author | Rob Austein <sra@hactrn.net> | 2009-05-11 05:23:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-05-11 05:23:41 +0000 |
commit | 125c61b4f7040e1206fa3eb5b627147bbbd5645b (patch) | |
tree | ab7657038e44498e226f79614e4abcdae5710057 /rpkid/testpoke.py | |
parent | 42edf90e3796d347cdf907f59b7b0977520632fd (diff) |
Pass ExitNow exceptions through, as signal handlers can raise them at any time.
svn path=/rpkid/irdbd.py; revision=2423
Diffstat (limited to 'rpkid/testpoke.py')
-rw-r--r-- | rpkid/testpoke.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rpkid/testpoke.py b/rpkid/testpoke.py index f07135a6..e770101e 100644 --- a/rpkid/testpoke.py +++ b/rpkid/testpoke.py @@ -102,6 +102,8 @@ def query_up_down(q_pdu): print r_xml try: r_msg.payload.check_response() + except rpki.async.ExitNow: + raise except Exception, edata: fail(edata) rpki.async.exit_event_loop() |