From 9d7a91c91b9463c77ce431fc0dc2fc0201f11859 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 13 Jun 2016 12:08:36 +0100 Subject: [PATCH] task/mds_thrash: don't drop exceptions from thrasher Previously, when there was an exception in the thrasher main loop, it would log it but ultimately "succeed" the teuthology task. Signed-off-by: John Spray --- tasks/mds_thrash.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/mds_thrash.py b/tasks/mds_thrash.py index 75530f8a8ef..7f9d9ade0d0 100644 --- a/tasks/mds_thrash.py +++ b/tasks/mds_thrash.py @@ -411,5 +411,6 @@ def task(ctx, config): for t in thrashers: log.info('join thrasher for failure group [{fg}]'.format(fg=', '.join(failure_group))) thrashers[t].stop() + thrashers[t].get() # Raise any exception from _run() thrashers[t].join() log.info('done joining') -- 2.39.5