From 55cc15fb248cb4c54f0d4c81e0f5857fc5f5271c Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Tue, 23 Jul 2013 15:52:32 -0700 Subject: [PATCH] Wait a little longer before recreating VMs Just to allow for the create to still work incase the os volume is fairly large (takes a while to resize) and in case the host machine is bogged down due to disk I/O. Signed-off-by: Sandon Van Ness --- teuthology/task/internal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 2e5372616e..476fd0b483 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -109,7 +109,7 @@ def lock_machines(ctx, config): time.sleep(10) keyscan_out, current_locks = lock.keyscan_check(ctx, vmlist) log.info('virtual machine is stil unavailable') - if loopcount == 30: + if loopcount == 40: loopcount = 0 log.info('virtual machine(s) still not up, recreating unresponsive ones.') for guest in vmlist: -- 2.39.5