From 9fe58d5ed6bd2338271a9e003f51d80c2e440e23 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Sun, 10 Sep 2017 12:42:16 -0700 Subject: [PATCH] Fix get_system_type failure due to invalid remote name recent changes caused the remote name to be invalid, fix the arg passed to get_system_type Signed-off-by: Vasu Kulkarni --- qa/tasks/ceph_deploy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 6a5f7169a92..596624d39aa 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -43,8 +43,7 @@ def download_ceph_deploy(ctx, config): )) log.info("Installing Python") - for admin in ceph_admin.remotes: - system_type = teuthology.get_system_type(admin) + system_type = teuthology.get_system_type(ceph_admin) if system_type == 'rpm': package = 'python34' if py_ver == '3' else 'python'