1
0
Fork 0

Do not hard fail on lazy repository when network is disabled and no package cache exists

pull/9203/head
Simon Berger 2020-09-11 21:35:20 +02:00
parent 6cf4ba051c
commit 74e02193a8
1 changed files with 4 additions and 1 deletions

View File

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