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
$connecting->then(function (ConnectionInterface$stream) use ($target, $auth, $deferred) {
160
+
$headers = $this->proxyHeaders;
161
+
$connecting->then(function (ConnectionInterface$stream) use ($target, $auth, $headers, $deferred) {
156
162
// keep buffering data until headers are complete
157
163
$buffer = '';
158
164
$stream->on('data', $fn = function ($chunk) use (&$buffer, $deferred, $stream, &$fn) {
@@ -212,7 +218,13 @@ public function connect($uri)
212
218
$deferred->reject(newRuntimeException('Connection to proxy lost while waiting for response (ECONNRESET)', defined('SOCKET_ECONNRESET') ? SOCKET_ECONNRESET : 104));
0 commit comments