log.info('Package not there yet, waiting...')
time.sleep(15)
continue
- raise Exception('failed to fetch package version from %s' %
- base_url + '/version')
+ raise VersionNotFoundError("%s/version" % base_url)
version = r.stdout.getvalue().strip()
log.info('Package version is %s', version)
break
log.info('Package not there yet, waiting...')
time.sleep(15)
continue
- raise Exception('failed to fetch package version from %s' %
- version_url)
+ raise VersionNotFoundError(version_url)
version = r.stdout.getvalue().strip()
log.info('Package version is %s', version)
break
log.info('Package not there yet, waiting...')
time.sleep(15)
continue
- raise Exception('failed to fetch package version from %s' %
- base_url + '/version')
+ raise VersionNotFoundError("%s/version" % base_url)
version = r.stdout.getvalue().strip()
log.info('Package version is %s', version)
break