Use CurlResult for failed HTTPRequests (legacy usage)
This commit is contained in:
parent
dee1899628
commit
89f718ec72
|
@ -224,7 +224,7 @@ class HTTPRequest implements IHTTPRequest
|
|||
if ($exception->hasResponse()) {
|
||||
return new GuzzleResponse($exception->getResponse(), $url, $exception->getCode(), $exception->getMessage());
|
||||
} else {
|
||||
return new GuzzleResponse(null, $url, $exception->getCode(), $exception->getMessage());
|
||||
return new CurlResult($url, '', ['http_code' => $exception->getCode()], $exception->getCode(), $exception->getMessage());
|
||||
}
|
||||
} finally {
|
||||
$this->profiler->stopRecording();
|
||||
|
|
Loading…
Reference in a new issue