diff options
author | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-10-25 13:36:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-10-25 13:36:16 +0000 |
commit | baac6579556f8216b36db0d0f87f9c2d4f8b4ef5 (patch) | |
tree | 71d467ffd009f469671d77927f34b15098ecd431 /doctor_tests/scenario | |
parent | 23bf63c4616040cb0d69cd26238af2a4a7c00a90 (diff) | |
parent | a6575910a137f8932e294f66c9da3194ad937691 (diff) |
Merge "Support Apex with services in containers"
Diffstat (limited to 'doctor_tests/scenario')
-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) |