From 3cffea4917d7a00220723cf013cd2f95d436c78b Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 3 Jan 2014 15:45:18 -0600 Subject: [PATCH] Re-raise exceptions caught in the watchdog --- teuthology/queue.py | 1 + 1 file changed, 1 insertion(+) 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() -- 2.39.5