From: Vasu Kulkarni Date: Sun, 10 Sep 2017 19:42:16 +0000 (-0700) Subject: Fix get_system_type failure due to invalid remote name X-Git-Tag: ses5-gm~5^2~5^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a3d43ad8f3e685a028e943b5aee9ec4720cba60b;p=ceph.git 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 (cherry picked from commit 9fe58d5ed6bd2338271a9e003f51d80c2e440e23) --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 56d451c2970e..38fbe43c2158 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'