[MNT-24180] fix FIX action

This commit is contained in:
Manish Kumar
2024-08-14 14:36:44 +05:30
parent e4387065f3
commit a4729aa6d6

View File

@@ -3784,7 +3784,13 @@ public class SolrInformationServer implements InformationServer
break;
}
}
for(long id = iterationStart; id <= batchEndId; id++)
{
if(idsInDb.get(id))
{
reporter.reportIdInDbButNotInIndex(id);
}
}
batchStartId = batchEndId + 1;
batchEndId = Math.min(batchStartId + BATCH_FACET_TXS, maxId);
}