We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f215f3d + 2db8fea commit 071c521Copy full SHA for 071c521
app/code/Magento/Eav/Model/Entity/Attribute.php
@@ -23,7 +23,7 @@ class Attribute extends \Magento\Eav\Model\Entity\Attribute\AbstractAttribute im
23
/**
24
* Attribute code max length
25
*/
26
- const ATTRIBUTE_CODE_MAX_LENGTH = 30;
+ const ATTRIBUTE_CODE_MAX_LENGTH = 255;
27
28
29
* Cache tag
lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php
@@ -91,7 +91,7 @@ public function commit()
91
call_user_func($callback);
92
}
93
} catch (\Exception $e) {
94
- throw $e;
+ $this->logger->critical($e);
95
96
97
return $this;
0 commit comments