From f399458604353e7133aa7e98b5ee08822ab06fff Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 11 Mar 2013 16:18:25 -0700 Subject: [PATCH] Fixed redis auth error spam in logs. Change-Id: I52e074b530d4dba2a0a8ec9b7d32f96d4527c6f4 --- includes/clientpool/RedisConnectionPool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/clientpool/RedisConnectionPool.php b/includes/clientpool/RedisConnectionPool.php index 8a3a1be879..2d6df0ecf6 100644 --- a/includes/clientpool/RedisConnectionPool.php +++ b/includes/clientpool/RedisConnectionPool.php @@ -94,7 +94,7 @@ class RedisConnectionPool { $options['persistent'] = false; } if ( !isset( $options['password'] ) ) { - $options['password'] = ''; + $options['password'] = null; } return $options; } -- 2.20.1