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)
This commit is contained in:
Dougal Matthews 2018-10-12 11:00:50 +01:00 committed by James Slagle
parent c8d6783ba2
commit 69f8b31201
1 changed files with 2 additions and 2 deletions

View File

@ -47,10 +47,10 @@ def deploy(log, 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):
status = payload.get('status', 'RUNNING')
if 'message' in payload and status == "RUNNING":
print(payload['message'])