From: Warren Usui Date: Wed, 29 Nov 2017 20:46:12 +0000 (+0000) Subject: broke up command and added log info X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9210c9b446f3247e64e9ff67af45dacad1ef64dd;p=teuthology.git broke up command and added log info --- diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 70b0e8504..e52d31f87 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -422,7 +422,6 @@ class CephAnsible(Task): self._copy_and_print_config() str_args = ' '.join(args) log.info('wait_for_run_ceph-ansible') - time.sleep(30) ceph_installer.run(args=[ run.Raw('cd ~/ceph-ansible'), run.Raw(';'), @@ -441,7 +440,11 @@ class CephAnsible(Task): 'install', run.Raw('"setuptools>=11.3"'), run.Raw('"%s"' % ansible_ver), - run.Raw(';'), + #run.Raw(';'), + ]) + log.info('right before this command:') + log.info(str_args) + ceph_installer.run(args=[ run.Raw(str_args) ]) wait_for_health = self.config.get('wait-for-health', True)