From: Zack Cerza Date: Fri, 3 Jan 2014 21:45:18 +0000 (-0600) Subject: Re-raise exceptions caught in the watchdog X-Git-Tag: 1.1.0~1702 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3cffea4917d7a00220723cf013cd2f95d436c78b;p=teuthology.git Re-raise exceptions caught in the watchdog --- diff --git a/teuthology/queue.py b/teuthology/queue.py index 148b5a27c1..f93264b806 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -293,6 +293,7 @@ def run_job(job_config, teuth_bin_path): run_with_watchdog(p, job_config) except Exception: log.exception("run_with_watchdog had an unhandled exception") + raise else: log.info("Running without watchdog") p.wait()