Increase timeout waiting for namespace deletion

Increase the timeout in test_recreate_pod_in_namespace until BZ#1997120
is fixed
Change-Id: Ib0a63190d0d07dbe1bf9ab69752703b013d5309e
This commit is contained in:
Itzik Brown 2021-10-27 15:41:23 +03:00
parent 5264e4c207
commit 15eeb47ca8
1 changed files with 2 additions and 1 deletions

View File

@ -389,7 +389,8 @@ class TestNamespaceScenario(base.BaseKuryrScenarioTest):
self.delete_namespace(ns_name)
# wait for namespace to be deleted
retries = 120
# FIXME(itzikb) Set retries to 120 when BZ#1997120 is fixed
retries = 600
while True:
try:
time.sleep(1)