From bd43d22923dbdf5d6e2e3403043aa4de19492444 Mon Sep 17 00:00:00 2001 From: David Jardin Date: Mon, 11 Mar 2024 19:33:17 +0100 Subject: [PATCH] default to 1.0 as protocol version --- src/Transport/Socket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transport/Socket.php b/src/Transport/Socket.php index 208f2463..fad3ae5c 100644 --- a/src/Transport/Socket.php +++ b/src/Transport/Socket.php @@ -81,7 +81,7 @@ public function request($method, UriInterface $uri, $data = null, array $headers } // Configure protocol version, use transport's default if not set otherwise. - $protocolVersion = $this->getOption('protocolVersion', '1.1'); + $protocolVersion = $this->getOption('protocolVersion', '1.0'); // Build the request payload. $request = [];