From 409de201390ef1b8a0eddb212bbbf0cfa8bb5282 Mon Sep 17 00:00:00 2001
From: Thomas Steur <thomas.steur@gmail.com>
Date: Tue, 6 Jan 2015 02:26:43 +0000
Subject: [PATCH] this cache has to be plugin aware, otherwise some test fail
 when the load new plugins but this cache did not notice

---
 core/Plugin/Report.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/Plugin/Report.php b/core/Plugin/Report.php
index aaa95bee50..3b14bea1ec 100644
--- a/core/Plugin/Report.php
+++ b/core/Plugin/Report.php
@@ -738,7 +738,7 @@ class Report
 
     private static function getMapOfModuleActionsToReport()
     {
-        $cacheId = 'ReportFactoryMap';
+        $cacheId = CacheId::pluginAware('ReportFactoryMap');
 
         $cache = Cache::getEagerCache();
         if ($cache->contains($cacheId)) {
-- 
GitLab