From a6575910a137f8932e294f66c9da3194ad937691 Mon Sep 17 00:00:00 2001 From: Tomi Juvonen Date: Fri, 28 Sep 2018 12:15:43 +0300 Subject: Support Apex with services in containers Upstream apex now works in containers, so if used, it needs to be supported JIRA: DOCTOR-130 Change-Id: I3d73a1699e4fee53b001f043f55d0eeefa7bfb7b Signed-off-by: Tomi Juvonen --- doctor_tests/scenario/maintenance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doctor_tests/scenario') diff --git a/doctor_tests/scenario/maintenance.py b/doctor_tests/scenario/maintenance.py index 54244d79..9fcd4128 100644 --- a/doctor_tests/scenario/maintenance.py +++ b/doctor_tests/scenario/maintenance.py @@ -168,9 +168,9 @@ class Maintenance(object): return ret.json()['state'] def wait_maintenance_complete(self, session_id): - retries = 60 + retries = 66 state = None - time.sleep(600) + time.sleep(540) while state != 'MAINTENANCE_COMPLETE' and retries > 0: time.sleep(10) state = self.get_maintenance_state(session_id) -- cgit 1.2.3-korg