Increase the deploy_plan timeout in tripleoclient

The time for the deploy workflow to complete has been creeping up, and
it is getting close to the 6 minute timeout in the client. This bumps
the timeout to 10 minutes.

Change-Id: Iadb7cc9ba3b62a0221109b1dacf2d764944f691a
Related-Bug: #1789680
(cherry picked from commit 9f716d8f66)
(cherry picked from commit 69f8b31201)
This commit is contained in:
Dougal Matthews 2018-10-12 11:00:50 +01:00 committed by Emilien Macchi
parent 6d54b46ffb
commit ca1fd76fdd
1 changed files with 2 additions and 2 deletions

View File

@ -43,10 +43,10 @@ def deploy(clients, **workflow_input):
)
# The deploy workflow ends once the Heat create/update starts. This
# means that is shouldn't take very long. Wait for six minutes for
# means that is shouldn't take very long. Wait for 10 minutes for
# messages from the workflow.
for payload in base.wait_for_messages(workflow_client, ws, execution,
360):
600):
assert payload['status'] == "SUCCESS", pprint.pformat(payload)