Skip to content

Commit a880353

Browse files
authored
Pass connecting time exceptions into the client observer
1 parent 9e8e40f commit a880353

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Client.php

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ public function _subscribe(ObserverInterface $clientObserver): DisposableInterfa
5858

5959
$request = $client->request('GET', $this->url, $flatHeaders, '1.1');
6060

61+
$request->on('error', function ($error) use ($clientObserver) {
62+
$clientObserver->onError($error);
63+
});
64+
6165
$request->on('response', function (Response $response, Request $request) use ($flatHeaders, $cNegotiator, $nRequest, $clientObserver) {
6266
if ($response->getCode() !== 101) {
6367
throw new \Exception('Unexpected response code ' . $response->getCode());

0 commit comments

Comments
 (0)