Skip to content

Commit b762730

Browse files
ENGCOM-5489: FIX: set correct page number for customer grid indexer iterator #23792
2 parents 2c82569 + 43de8b2 commit b762730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Customer/Model/Indexer/Source.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function getIterator()
9696
{
9797
$this->customerCollection->setPageSize($this->batchSize);
9898
$lastPage = $this->customerCollection->getLastPageNumber();
99-
$pageNumber = 0;
99+
$pageNumber = 1;
100100
do {
101101
$this->customerCollection->clear();
102102
$this->customerCollection->setCurPage($pageNumber);

0 commit comments

Comments
 (0)