From eb72aa35505a0e24d2b9a2623a98af3daa0da5b1 Mon Sep 17 00:00:00 2001 From: Herb Date: Fri, 19 May 2017 12:04:27 -0400 Subject: [PATCH] Remove call to nonexistent method --- CRM/Utils/Cache/Redis.php | 1 - 1 file changed, 1 deletion(-) diff --git a/CRM/Utils/Cache/Redis.php b/CRM/Utils/Cache/Redis.php index db770ecf8c..2852935da9 100644 --- a/CRM/Utils/Cache/Redis.php +++ b/CRM/Utils/Cache/Redis.php @@ -117,7 +117,6 @@ class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface { */ public function set($key, &$value) { if (!$this->_cache->set($this->_prefix . $key, serialize($value), $this->_timeout)) { - CRM_Core_Error::debug('Result Code: ', $this->_cache->getResultMessage()); CRM_Core_Error::fatal("Redis set failed, wondering why?, $key", $value); return FALSE; } -- 2.25.1