mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-07 21:56:31 +02:00
Update Util.php
Fixes bug with error handler. Once `curl_close($ch)` is called, then `curl_errno($ch)` and `curl_error($ch)` makes no sense and will cause an error in the exception handler.
This commit is contained in:
@@ -33,12 +33,18 @@ class Util
|
|||||||
{
|
{
|
||||||
while ($retries--) {
|
while ($retries--) {
|
||||||
if (curl_exec($ch) === false) {
|
if (curl_exec($ch) === false) {
|
||||||
if (false === in_array(curl_errno($ch), self::$retriableErrorCodes, true) || !$retries) {
|
|
||||||
|
$curlErrno = curl_errno($ch);
|
||||||
|
|
||||||
|
if (false === in_array($curlErrno, self::$retriableErrorCodes, true) || !$retries) {
|
||||||
|
|
||||||
|
$curlError = curl_error($ch);
|
||||||
|
|
||||||
if ($closeAfterDone) {
|
if ($closeAfterDone) {
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new \RuntimeException(sprintf('Curl error (code %s): %s', curl_errno($ch), curl_error($ch)));
|
throw new \RuntimeException(sprintf('Curl error (code %s): %s', $curlErrno, $curlError));
|
||||||
}
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
|
Reference in New Issue
Block a user