We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ecc120 + ac13b19 commit 5c2ce64Copy full SHA for 5c2ce64
lib/internal/Magento/Framework/App/Cache/Type/FrontendPool.php
@@ -104,7 +104,8 @@ protected function _getCacheFrontendId($cacheType)
104
$result = null;
105
$cacheInfo = $this->deploymentConfig->getConfigData(self::KEY_CACHE);
106
if (null !== $cacheInfo) {
107
- $result = $cacheInfo[self::KEY_CACHE_TYPE][$cacheType][self::KEY_FRONTEND_CACHE];
+ $result = isset($cacheInfo[self::KEY_CACHE_TYPE][$cacheType][self::KEY_FRONTEND_CACHE]) ?
108
+ $cacheInfo[self::KEY_CACHE_TYPE][$cacheType][self::KEY_FRONTEND_CACHE] : null;
109
}
110
if (!$result) {
111
if (isset($this->_typeFrontendMap[$cacheType])) {
0 commit comments