From ac87c396247bf1201841a45b5f20d4b0349a0f32 Mon Sep 17 00:00:00 2001 From: Dmitry Belyaninov Date: Mon, 23 Jan 2017 11:17:59 +0000 Subject: [PATCH] Modification of timeouts for server deletion Current timeout is 20 sec, and 10 sec retry period. In case slow instance removing we are falling to error. New intervals make procedure more correct to check real removing state few times. Change-Id: I38c0d5663ac5359a21f95f4dc0fbb32c8fb256bc Closes-Bug: 1637462 --- fuel_health/nmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuel_health/nmanager.py b/fuel_health/nmanager.py index 6086f824..cd7a6c4a 100644 --- a/fuel_health/nmanager.py +++ b/fuel_health/nmanager.py @@ -463,7 +463,7 @@ class OfficialClientTest(fuel_health.test.TestCase): return False fuel_health.test.call_until_true( - is_deletion_complete, 20, 10) + is_deletion_complete, 21, 5) def retry_command(self, retries, timeout, method, *args, **kwargs): for i in range(retries):