boottest - Add error message if fetching the manifest fails

bzr-import-20160707
Joe Talbott 10 years ago
parent aeecde32ed
commit 7adfb13783

@ -61,6 +61,9 @@ class TouchManifest(object):
while retries > 0 and not success: while retries > 0 and not success:
success = self.__fetch_manifest(distribution, series) success = self.__fetch_manifest(distribution, series)
retries -= 1 retries -= 1
if not success:
print("E: [%s] - Unable to fetch manifest: %s %s" % (
time.asctime(), distribution, series))
self._manifest = self._load() self._manifest = self._load()

Loading…
Cancel
Save