Skip to content

Commit

Permalink
Merge pull request #10382 from herbdool/Redis-fix
Browse files Browse the repository at this point in the history
Remove call to nonexistent method
  • Loading branch information
eileenmcnaughton authored May 22, 2017
2 parents 3998445 + eb72aa3 commit 773c955
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion CRM/Utils/Cache/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public function __construct($config) {
*/
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;
}
Expand Down

0 comments on commit 773c955

Please sign in to comment.