You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return$this->connector->connect($proxyUri)->then(function (ConnectionInterface$stream) use ($host, $port, $auth) {
141
+
return$this->connector->connect($proxyUri)->then(function (ConnectionInterface$stream) use ($target, $auth) {
143
142
$deferred = newDeferred(function ($_, $reject) use ($stream) {
144
143
$reject(newRuntimeException('Connection canceled while waiting for response from proxy (ECONNABORTED)', defined('SOCKET_ECONNABORTED') ? SOCKET_ECONNABORTED : 103));
145
144
$stream->close();
@@ -199,7 +198,7 @@ public function connect($uri)
199
198
$deferred->reject(newRuntimeException('Connection to proxy lost while waiting for response (ECONNRESET)', defined('SOCKET_ECONNRESET') ? SOCKET_ECONNRESET : 104));
0 commit comments