Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  [DoctrineBridge] Fix Connection::createSchemaManager() for Doctrine DBAL v2
  [HttpClient] Various cleanups after recent changes
  do not add child nodes to EmptyNode instances
  consider write property visibility to decide whether a property is writable
  add comment explaining why HttpClient tests are run separately
  silence warnings issued by Redis Sentinel on connection issues
  • Loading branch information
nicolas-grekas committed Nov 25, 2024
2 parents 5005cd0 + 0e9e316 commit ee27680
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 @@ -140,7 +140,7 @@ public function __construct(array $options, \Redis|Relay|\RedisCluster|null $red
'readTimeout' => $options['read_timeout'],
];

$sentinel = new \RedisSentinel($params);
$sentinel = @new \RedisSentinel($params);
} else {
$sentinel = @new $sentinelClass($host, $port, $options['timeout'], $options['persistent_id'], $options['retry_interval'], $options['read_timeout']);
}
Expand Down

0 comments on commit ee27680

Please sign in to comment.