From 74b344e980181a2b170328fb987c6663fe011694 Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Tue, 30 Jul 2013 17:26:59 -0700 Subject: [PATCH] Reconnect after running chef task. Just a simple change to reconnect to SSH after running ceph-qa-chef to get around things like ulimit changes. Signed-off-by: Sandon Van Ness --- teuthology/task/chef.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/teuthology/task/chef.py b/teuthology/task/chef.py index a63641485631d..e32bb4b1857bc 100644 --- a/teuthology/task/chef.py +++ b/teuthology/task/chef.py @@ -1,6 +1,7 @@ import logging from ..orchestra import run +from .. import misc log = logging.getLogger(__name__) @@ -25,3 +26,7 @@ def task(ctx, config): wait=False, ) ) + + log.info('Reconnecting after ceph-qa-chef run') + misc.reconnect(ctx, 10) #Reconnect for ulimit and other ceph-qa-chef changes + -- 2.39.5