From c764b2475b78ac88ea118603661d9d94c400ece1 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Mon, 7 Nov 2011 13:05:14 -0800 Subject: [PATCH] Fix leftover orchestra import clause. This seems to be a leftover from a2372fce12b6bd1818e155d1d8ed5134dbd8fd4a, no idea how it stayed hidden this long. --- teuthology/task/internal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index a7df647503cab..0cb9810fa6920 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -114,7 +114,7 @@ def check_lock(ctx, config): def connect(ctx, config): log.info('Opening connections...') from ..orchestra import connection, remote - import orchestra.cluster + from ..orchestra import cluster remotes = [] for t, key in ctx.config['targets'].iteritems(): log.debug('connecting to %s', t) @@ -123,7 +123,7 @@ def connect(ctx, config): ssh=connection.connect(user_at_host=t, host_key=key, keep_alive=True))) - ctx.cluster = orchestra.cluster.Cluster() + ctx.cluster = cluster.Cluster() if 'roles' in ctx.config: for rem, roles in zip(remotes, ctx.config['roles']): assert all(isinstance(role, str) for role in roles), \ -- 2.39.5