From 5a14a4d846d256d345ea0768c9b0d381b39f4df4 Mon Sep 17 00:00:00 2001 From: Aishwarya Mathuria Date: Tue, 5 Jul 2022 09:34:05 +0530 Subject: [PATCH] Increasing tries for waiting until all OSDs are booted Signed-off-by: Aishwarya Mathuria --- teuthology/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/misc.py b/teuthology/misc.py index 7e92debe5e..4d1317bb24 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: -- 2.39.5