Increase the timeout for plan creation from 6 mins to 9

Uploading the Heat templates to swift can take over 4 minutes. This only
leaves 2 for all the other stages of a plan creation. We should make
this faster but until that happens we should increase the timeout to
reduce CI failures.

See the related bug for a larger description of the problem.

Related-Bug: #1738493
Change-Id: I67411cc5bbec1ad0b6a6efa11a2c5a811c135e70
This commit is contained in:
Dougal Matthews 2017-12-16 14:51:54 +00:00
parent 8f8fddb2a3
commit 9c3753be7a
1 changed files with 1 additions and 1 deletions

View File

@ -1649,7 +1649,7 @@ def _get_session():
return session.Session(auth=auth_plugin)
def _run_validation_groups(groups=[], mistral_url='', timeout=360,
def _run_validation_groups(groups=[], mistral_url='', timeout=540,
fail_on_error=False):
sess = _get_session()
mistral = mistralclient.client(mistral_url=mistral_url, session=sess)