From 31cfac1cfa7067cfdad57aeb58d90863c9aed973 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Tue, 13 Aug 2019 08:32:08 +0200 Subject: [PATCH] Fix Redis test - Check if $redis_port is null --- src/Core/Cache/RedisCache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Core/Cache/RedisCache.php b/src/Core/Cache/RedisCache.php index 5f8fd7e4ce..813c91b155 100644 --- a/src/Core/Cache/RedisCache.php +++ b/src/Core/Cache/RedisCache.php @@ -37,8 +37,10 @@ class RedisCache extends Cache implements IMemoryCache $redis_pw = $config->get('system', 'redis_password'); $redis_db = $config->get('system', 'redis_db', 0); - if (!$this->redis->connect($redis_host, $redis_port)) { + if (isset($redis_port) && !$this->redis->connect($redis_host, $redis_port)) { throw new Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available'); + } elseif (!$this->redis->connect($redis_host)) { + throw new Exception('Expected Redis server at ' . $redis_host . ' isn\'t available'); } if (isset($redis_pw) && !$this->redis->auth($redis_pw)) {