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: v13.0.1~951^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F17650%2Fhead;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 --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 6a5f7169a928..596624d39aad 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'