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 b880f57 commit 900f716Copy full SHA for 900f716
lib/internal/Magento/Framework/Mview/View.php
@@ -285,7 +285,7 @@ public function update()
285
for ($vsFrom = $lastVersionId; $vsFrom < $currentVersionId; $vsFrom += $versionBatchSize) {
286
// Don't go past the current version for atomicy.
287
$versionTo = min($currentVersionId, $vsFrom + $versionBatchSize);
288
- $ids = array_map('intval', $this->getChangelog()->getList($vsFrom, $versionTo));
+ $ids = $this->getChangelog()->getList($vsFrom, $versionTo);
289
290
// We run the actual indexer in batches.
291
// Chunked AFTER loading to avoid duplicates in separate chunks.
0 commit comments