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 d3ea191 + 1dd16bc commit e289191Copy full SHA for e289191
app/code/Magento/Elasticsearch/Model/Indexer/Fulltext/Plugin/Category/Product/Action/Rows.php
@@ -89,7 +89,9 @@ public function afterExecute(
89
if (!empty($productIds)) {
90
$indexer = $this->indexerRegistry->get(FulltextIndexer::INDEXER_ID);
91
if ($indexer->isScheduled()) {
92
- $indexer->getView()->getChangelog()->addList($productIds);
+ $changelog = $indexer->getView()->getChangelog();
93
+ $changelog->create();
94
+ $changelog->addList($productIds);
95
} else {
96
$indexer->invalidate();
97
}
0 commit comments