From addfed2da8c736a18f251847bdbfd1de983255da Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 31 Mar 2014 17:46:27 -0500 Subject: [PATCH] When ignoring a raised exception, at least log it Signed-off-by: Zack Cerza --- teuthology/task/mon_thrash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/mon_thrash.py b/teuthology/task/mon_thrash.py index 7dc7caad8463d..b45aaa999780b 100644 --- a/teuthology/task/mon_thrash.py +++ b/teuthology/task/mon_thrash.py @@ -300,7 +300,7 @@ class MonitorThrasher: try: self.manager.raw_cluster_cmd('scrub') except Exception: - pass + log.exception("Saw exception while triggering scrub") if self.thrash_delay > 0.0: self.log('waiting for {delay} secs before continuing thrashing'.format( -- 2.39.5