diff --git a/lib/internal/Magento/Framework/App/Cache/Manager.php b/lib/internal/Magento/Framework/App/Cache/Manager.php index fc49b8af25f568876eb2336c2aa690a296285a7b..3936853833b98fe671c4a748052d944184f6e6a9 100644 --- a/lib/internal/Magento/Framework/App/Cache/Manager.php +++ b/lib/internal/Magento/Framework/App/Cache/Manager.php @@ -85,8 +85,7 @@ class Manager public function clean(array $types) { foreach ($types as $type) { - $frontend = $this->pool->get($type); - $frontend->clean(); + $this->cacheTypeList->cleanType($type); } }