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.
1 parent 10adf7d commit 0408c3dCopy full SHA for 0408c3d
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