From: Aishwarya Mathuria Date: Tue, 5 Jul 2022 04:04:05 +0000 (+0530) Subject: Increasing tries for waiting until all OSDs are booted X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fwip-amathuria-large-scale-testing;p=teuthology.git Increasing tries for waiting until all OSDs are booted Signed-off-by: Aishwarya Mathuria --- diff --git a/teuthology/misc.py b/teuthology/misc.py index 7e92debe5..4d1317bb2 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -854,7 +854,7 @@ def wait_until_osds_up(ctx, cluster, remote, ceph_cluster='ceph'): """Wait until all Ceph OSDs are booted.""" num_osds = num_instances_of_type(cluster, 'osd', ceph_cluster) testdir = get_testdir(ctx) - with safe_while(sleep=6, tries=90) as proceed: + with safe_while(sleep=6, increment=2, tries=100) as proceed: while proceed(): daemons = ctx.daemons.iter_daemons_of_role('osd', ceph_cluster) for daemon in daemons: