From: John Spray Date: Wed, 5 Feb 2014 20:27:18 +0000 (+0000) Subject: Catch a case where we weren't getting tracebacks X-Git-Tag: 1.1.0~1671^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ab2a01ff01d341d5f82cf4c69f461b5b0f570ce1;p=teuthology.git Catch a case where we weren't getting tracebacks Signed-off-by: John Spray --- diff --git a/teuthology/parallel.py b/teuthology/parallel.py index 87aacace56..13e426e573 100644 --- a/teuthology/parallel.py +++ b/teuthology/parallel.py @@ -83,6 +83,8 @@ class parallel(object): log.debug('result is %s', repr(result)) pass except Exception: + # Emit message here because traceback gets stomped when we re-raise + log.exception("Exception in parallel execution") self.group.kill(block=True) raise return True