We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f217ff5 commit 72c3827Copy full SHA for 72c3827
1 file changed
src/Dashboards/Redis/RedisDashboard.php
@@ -80,7 +80,7 @@ private function connect(array $server): Redis {
80
$server['port'] ??= 6379;
81
82
try {
83
- $redis->connect($server['host'], (int) $server['port']);
+ $redis->connect($server['host'], (int) $server['port'], 3);
84
} catch (Exception $e) {
85
throw new DashboardException(
86
sprintf('Failed to connect to Redis server (%s:%s). Error: %s', $server['host'], $server['port'], $e->getMessage())
0 commit comments