Merge pull request #9203 from simonberger/lazy-provider-skip-failed-exception

Do not hard fail on lazy repository when network is disabled and no package cache exists
main
Jordi Boggiano 4 years ago committed by GitHub
commit 548f346282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -584,8 +584,11 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
$packages = $this->fetchFile($url, $cacheKey, $hash, $useLastModifiedCheck);
} catch (TransportException $e) {
// 404s are acceptable for lazy provider repos
if ($e->getStatusCode() === 404 && $this->lazyProvidersUrl) {
if ($this->lazyProvidersUrl && in_array($e->getStatusCode(), array(404, 499), true)) {
$packages = array('packages' => array());
if ($e->getStatusCode() === 499) {
$this->io->error('<warning>' . $e->getMessage() . '</warning>');
}
} else {
throw $e;
}

Loading…
Cancel
Save