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 fa66aa7 commit 018d259Copy full SHA for 018d259
app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php
@@ -78,18 +78,12 @@ public function __construct(
78
/**
79
* @inheritDoc
80
*/
81
- public function reindexAttribute($attributeId, $isIndexable = true)
+ public function reindexEntities($processIds)
82
{
83
- if (!$isIndexable) {
84
- $this->_removeAttributeIndexData($attributeId);
85
- } else {
86
- $this->clearTemporaryIndexTable();
87
-
88
- $this->_prepareIndex(null, $attributeId);
89
- $this->_prepareRelationIndex();
+ $this->clearTemporaryIndexTable();
90
91
- $this->_synchronizeAttributeIndexData($attributeId);
92
- }
+ $this->_prepareIndex($processIds);
+ $this->_prepareRelationIndex($processIds);
93
94
return $this;
95
}
0 commit comments