diff options
author | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-09-28 12:15:43 +0300 |
---|---|---|
committer | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-10-25 13:57:03 +0300 |
commit | a6575910a137f8932e294f66c9da3194ad937691 (patch) | |
tree | e11851ae691892fea7f0efb9922f115fbb0521a9 /doctor_tests/scenario/maintenance.py | |
parent | 61eb3927ada784cc3dffb5ddd17f66e47871f708 (diff) |
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 <tomi.juvonen@nokia.com>
Diffstat (limited to 'doctor_tests/scenario/maintenance.py')
-rw-r--r-- | doctor_tests/scenario/maintenance.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |