From 9f04a7b32e0d9b2dbabcfafb1d65b62460123fd9 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Thu, 15 Dec 2016 14:11:00 -0800 Subject: [PATCH] use dev option instead of dev-commit Signed-off-by: Vasu Kulkarni --- qa/tasks/ceph_deploy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 9453c49a5a3d..c0ea78423461 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -272,12 +272,12 @@ def build_ceph_cluster(ctx, config): ceph_admin, conf_path, lines, sudo=True) # install ceph - ceph_sha = ctx.config['sha1'] - devcommit = '--dev-commit={sha}'.format(sha=ceph_sha) + dev_branch = ctx.config['branch'] + branch = '--dev={branch}'.format(branch=dev_branch) if ceph_branch: option = ceph_branch else: - option = devcommit + option = branch install_nodes = './ceph-deploy install ' + option + " " + all_nodes estatus_install = execute_ceph_deploy(install_nodes) if estatus_install != 0: -- 2.47.3