From: Aaron Schulz Date: Mon, 11 Mar 2013 23:18:25 +0000 (-0700) Subject: Fixed redis auth error spam in logs. X-Git-Tag: 1.31.0-rc.0~20386 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=f399458604353e7133aa7e98b5ee08822ab06fff;p=lhc%2Fweb%2Fwiklou.git Fixed redis auth error spam in logs. Change-Id: I52e074b530d4dba2a0a8ec9b7d32f96d4527c6f4 --- 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; }