Skip to content

Commit 21828b3

Browse files
committed
fix smoke test failures
1 parent a3e995e commit 21828b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/marvin/marvin/lib/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1658,11 +1658,12 @@ def download(self, apiclient, retries=300, interval=5):
16581658
# If template is ready,
16591659
# template.status = Download Complete
16601660
# Downloading - x% Downloaded
1661+
# Processing - Initial status
16611662
# Error - Any other string
16621663
if template.status == 'Download Complete' and template.isready:
16631664
return
16641665

1665-
elif 'Downloaded' in template.status:
1666+
elif 'Downloaded' in template.status or template.status == 'Processing':
16661667
retries = retries - 1
16671668
continue
16681669

0 commit comments

Comments
 (0)