]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
fog: Increase timeout in wait_for_deploy_task()
authorZack Cerza <zack@redhat.com>
Mon, 22 May 2023 23:59:36 +0000 (17:59 -0600)
committerZack Cerza <zack@redhat.com>
Mon, 22 May 2023 23:59:36 +0000 (17:59 -0600)
When too many reimaging ops are running concurrently, we're seeing
timeouts. This isn't a true fix, but should help things until we've got
one.

Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/provision/fog.py

index 440ca2c2755436a9656aacf969e2f790b0ed2dcc..09cf2346a5501dd10f3bfe187f80a355b46a6a00 100644 (file)
@@ -251,7 +251,7 @@ class FOG(object):
         completed)
         """
         self.log.info("Waiting for deploy to finish")
-        with safe_while(sleep=15, tries=60) as proceed:
+        with safe_while(sleep=15, tries=120) as proceed:
             while proceed():
                 if not self.deploy_task_active(task_id):
                     break