From d5448b5e0872530c29728ef03196ec90324057a6 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Thu, 30 Aug 2018 15:14:37 +0200 Subject: keep key out of title so err msg is the same on each backend and gets deduped --- it_cache.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_cache.class b/it_cache.class index 1e6df1e..2186af3 100644 --- a/it_cache.class +++ b/it_cache.class @@ -86,7 +86,7 @@ static function put($key, $value, $p = array()) $success = ($func = self::$_store_func) ? $func($key, $value, $p['ttl']) : null; if (!$success && $p['safety'] == 1) - it::error(['title' => ($p['distributed'] ? "memcache (" . ($memcache ? ($memcache->getResultMessage() . " on " . $memcache->getServerByKey($key)['host']) : "n/a") . ")" : self::$_store_func) . " in it_cache::put failed for key '$key'", 'timewindow' => "1200-1220"]); + it::error(['title' => ($p['distributed'] ? "memcache (" . ($memcache ? ($memcache->getResultMessage() . " on " . $memcache->getServerByKey($key)['host']) : "n/a") . ")" : self::$_store_func) . " in it_cache::put failed", 'body' => "key='$key'", 'timewindow' => "1200-1220"]); $GLOBALS['it_cache_local'][$key] = $value; # Also store local copy -- cgit v1.2.3