Skip to content

Commit

Permalink
[3.x] Socket driver : default to 1.0 as protocol version #55
Browse files Browse the repository at this point in the history
  • Loading branch information
SniperSister committed Mar 11, 2024
1 parent ec389a6 commit 3379b5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transport/Socket.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down

0 comments on commit 3379b5a

Please sign in to comment.