From f70b158cd197a4654527655177bacb589f252fee Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 13 Jan 2012 21:56:37 -0800 Subject: [PATCH] show host -> roles mapping on startup Less guessing when manually inspecting an in-progress or hung run. --- teuthology/task/internal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 60241f9f09..071d8e6f6f 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -135,6 +135,7 @@ def connect(ctx, config): assert all(isinstance(role, str) for role in roles), \ "Roles in config must be strings: %r" % roles ctx.cluster.add(rem, roles) + log.info('roles: %s - %s' % (rem, roles)) else: for rem in remotes: ctx.cluster.add(rem, rem.name) -- 2.39.5