From 07fa73aa7e698bc212ebeb65efbe558e49ac054a Mon Sep 17 00:00:00 2001 From: Magento EngCom Team Date: Wed, 24 Jan 2018 12:12:55 -0600 Subject: [PATCH] :arrow_double_up: Forwardport of magento/magento2#12810 to 2.3-develop branch Applied pull request patch https://github.com/magento/magento2/pull/12810.patch (created by @nicka101) based on commit(s): 1. 5f1b8461045779966bb5e70954d4ff96dd2447d9 --- app/code/Magento/Eav/Model/Config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Eav/Model/Config.php b/app/code/Magento/Eav/Model/Config.php index cc68709cd3b03..0eecca21b0d54 100644 --- a/app/code/Magento/Eav/Model/Config.php +++ b/app/code/Magento/Eav/Model/Config.php @@ -503,6 +503,7 @@ public function getAttribute($entityType, $code) } if (isset($this->attributes[$entityTypeCode][$code])) { + \Magento\Framework\Profiler::stop('EAV: ' . __METHOD__); return $this->attributes[$entityTypeCode][$code]; }