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
This commit is contained in:
Dmitry Belyaninov 2017-01-23 11:17:59 +00:00 committed by Vladimir Khlyunev
parent 0cd75f47ce
commit ac87c39624
1 changed files with 1 additions and 1 deletions

View File

@ -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):