]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Increasing tries for waiting until all OSDs are booted wip-amathuria-large-scale-testing
authorAishwarya Mathuria <amathuri@redhat.com>
Tue, 5 Jul 2022 04:04:05 +0000 (09:34 +0530)
committerAishwarya Mathuria <amathuri@redhat.com>
Tue, 5 Jul 2022 04:04:05 +0000 (09:34 +0530)
Signed-off-by: Aishwarya Mathuria <amathuri@redhat.com>
teuthology/misc.py

index 7e92debe5e86cb744c7e5dd617672a144aecff24..4d1317bb249d4d045363b97f966f60584f830704 100644 (file)
@@ -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: