Project

General

Profile

Bug #96054

Updated by Mathias Brodala over 2 years ago

The CLI command @language:update@ invokes @LanguagePackService::languagePackDownload()@ for each active extension. Here a HTTP request is performed on the translation server which can fail with an exception on 404. 

 The @RequestFactory::request()@ call here should be adjusted to include "@['http_errors' @['http_errors' => false]@":https://docs.guzzlephp.org/en/stable/request-options.html#http-errors false]@ to have Guzzle return the 404 response instead of throwing an exception. This would allow for logging this as a regular warning.

Back