fix smoke test failures

This commit is contained in:
Manoj Kumar 2025-12-24 16:56:57 +05:30
parent a3e995edd5
commit 21828b369f
No known key found for this signature in database
GPG Key ID: E952B7234D2C6F88
1 changed files with 2 additions and 1 deletions

View File

@ -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