mirror of https://github.com/apache/cloudstack.git
fix smoke test failures
This commit is contained in:
parent
a3e995edd5
commit
21828b369f
|
|
@ -1658,11 +1658,12 @@ class Template:
|
|||
# If template is ready,
|
||||
# template.status = Download Complete
|
||||
# Downloading - x% Downloaded
|
||||
# Processing - Initial status
|
||||
# Error - Any other string
|
||||
if template.status == 'Download Complete' and template.isready:
|
||||
return
|
||||
|
||||
elif 'Downloaded' in template.status:
|
||||
elif 'Downloaded' in template.status or template.status == 'Processing':
|
||||
retries = retries - 1
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue