[stable only] Remove timeout in config-download-export

With large number of nodes this can run for more than the
default timeout of 360s as we do fetch the whole config
from heat and generate the playbooks and the workflow can
timeout very easily.

This was removed for config-download worflow with
https://review.opendev.org/620627

Related-Bug: #1805649
Change-Id: Ib413a40a63c9d79e7387f854167d80a105888337
This commit is contained in:
Rabi Mishra 2020-04-24 14:42:02 +05:30 committed by Sergii Golovatiuk
parent b95119250c
commit 934d713ac5
1 changed files with 1 additions and 2 deletions

View File

@ -395,8 +395,7 @@ def config_download_export(clients, **workflow_input):
workflow_input=workflow_input
)
for payload in base.wait_for_messages(workflow_client, ws, execution,
_WORKFLOW_TIMEOUT):
for payload in base.wait_for_messages(workflow_client, ws, execution):
message = payload.get('message')
if message:
print(message)