Increase wait time for daemons and log message

This commit is contained in:
Joshua Boniface 2019-06-17 10:30:46 -04:00
parent fe654aa5a2
commit 23994f8a11
1 changed files with 2 additions and 1 deletions

View File

@ -411,7 +411,8 @@ if enable_storage:
logger.out('Starting Ceph manager daemon', state='i') logger.out('Starting Ceph manager daemon', state='i')
common.run_os_command('systemctl start ceph-mgr@{}'.format(myhostname)) common.run_os_command('systemctl start ceph-mgr@{}'.format(myhostname))
time.sleep(1) logger.out('Waiting 5s for daemons to start', state='s')
time.sleep(5)
############################################################################### ###############################################################################
# PHASE 4 - Attempt to connect to the coordinators and start zookeeper client # PHASE 4 - Attempt to connect to the coordinators and start zookeeper client