summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/drivers
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-09-14 12:56:41 +0200
committerAndrey Andreev <narf@devilix.net>2015-09-14 12:56:41 +0200
commit24ff6dbcf88a9095785c1cb8fdba213843756595 (patch)
tree9af3784fe6ab73b021ceae08a58911792c4f91af /system/libraries/Cache/drivers
parentf2239fe1f6e0578a00afb88e9fc2b2cdd2ac2626 (diff)
Fix #4044
Diffstat (limited to 'system/libraries/Cache/drivers')
-rw-r--r--system/libraries/Cache/drivers/Cache_redis.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/system/libraries/Cache/drivers/Cache_redis.php b/system/libraries/Cache/drivers/Cache_redis.php
index 2825acfd3..ea0059ff7 100644
--- a/system/libraries/Cache/drivers/Cache_redis.php
+++ b/system/libraries/Cache/drivers/Cache_redis.php
@@ -117,17 +117,17 @@ class CI_Cache_redis extends CI_Driver
{
log_message('error', 'Cache: Redis connection failed. Check your configuration.');
}
+
+ if (isset($config['password']) && ! $this->_redis->auth($config['password']))
+ {
+ log_message('error', 'Cache: Redis authentication failed.');
+ }
}
catch (RedisException $e)
{
log_message('error', 'Cache: Redis connection refused ('.$e->getMessage().')');
}
- if (isset($config['password']) && ! $this->_redis->auth($config['password']))
- {
- log_message('error', 'Cache: Redis authentication failed.');
- }
-
// Initialize the index of serialized values.
$serialized = $this->_redis->sMembers('_ci_redis_serialized');
empty($serialized) OR $this->_serialized = array_flip($serialized);