From: Warren Usui Date: Mon, 27 Nov 2017 22:19:37 +0000 (+0000) Subject: log and sleep X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6331dbea6fa9450106ded887f87fba45ead96792;p=teuthology.git log and sleep --- diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 1165400dd..2b1a23d1f 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -3,6 +3,7 @@ import os import re import logging import yaml +import time from cStringIO import StringIO @@ -280,7 +281,8 @@ class CephAnsible(Task): def wait_for_ceph_health(self): with contextutil.safe_while(sleep=15, tries=6, action='check health') as proceed: - import pdb; pdb.set_trace() + log.info('wait_for_ceph_health aardvark') + time.sleep(30) (remote,) = self.ctx.cluster.only('mon.a').remotes remote.run(args=[ 'sudo', 'ceph', '--cluster', self.cluster_name, 'osd', 'tree' @@ -419,7 +421,8 @@ class CephAnsible(Task): ]) self._copy_and_print_config() str_args = ' '.join(args) - import pdb; pdb.set_trace() + log.info('wait_for_run_ceph-ansible') + time.sleep(30) ceph_installer.run(args=[ run.Raw('cd ~/ceph-ansible'), run.Raw(';'),