Skip to content

Commit

Permalink
Log an error if redis authentication is failed.
Browse files Browse the repository at this point in the history
  • Loading branch information
vibbow committed Feb 14, 2019
1 parent f3d4117 commit dfe90e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Cache/Handlers/RedisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function initialize()

if (isset($config['password']) && ! $this->redis->auth($config['password']))
{
// log_message('error', 'Cache: Redis authentication failed.');
log_message('error', 'Cache: Redis authentication failed.');
}

if (isset($config['database']) && ! $this->redis->select($config['database']))
Expand Down

0 comments on commit dfe90e7

Please sign in to comment.