Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  Removed body size limit
  prevent failures around not existing TypeInfo classes
  fix version check to include dev versions
  • Loading branch information
nicolas-grekas committed Nov 14, 2024
2 parents c2a907c + 5005cd0 commit cd21617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transport/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function __construct(array $options, \Redis|Relay|\RedisCluster|null $red
}

try {
if (\extension_loaded('redis') && version_compare(phpversion('redis'), '6.0.0', '>=')) {
if (\extension_loaded('redis') && version_compare(phpversion('redis'), '6.0.0-dev', '>=')) {
$params = [
'host' => $host,
'port' => $port,
Expand Down

0 comments on commit cd21617

Please sign in to comment.