From: Zack Cerza Date: Tue, 17 Dec 2013 17:02:30 +0000 (-0600) Subject: Catch every exception here, for now. X-Git-Tag: v0.94.10~27^2^2~364^2~440 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b014c71829499b286fdb83a49103eeb5bb0c8dc9;p=ceph.git Catch every exception here, for now. Signed-off-by: Zack Cerza --- diff --git a/teuthology/queue.py b/teuthology/queue.py index 851693371109..254a31e752c3 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -225,8 +225,9 @@ def run_with_watchdog(process, job_config): try: subprocess.Popen(cmd, shell=True).wait() log.warn("Reported results via the teuthology-report command") - except OSError: - log.warn("Tried to run teuthology-report but it wasn't in $PATH") + except Exception: + log.exception("teuthology-report failed") + #log.warn("Tried to run teuthology-report but it wasn't in $PATH") else: # Let's make sure that paddles knows the job is finished. We don't know # the status, but if it was a pass or fail it will have already been