Skip to content

Commit

Permalink
Merge branch 'moqui:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
dixitdeepak authored Jul 27, 2022
2 parents 88e8ceb + 4a019fc commit 06d2f86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ class EntityDataFeed {

ArrayList primaryPkValueList = new ArrayList<Map<String, Object>>(primaryPkFieldValues)
int primaryPkValueListSize = primaryPkValueList.size()
int chunkSize = 500
int chunkSize = 200
for (int outer = 0; outer < primaryPkValueListSize; ) {
int remaining = primaryPkValueListSize - outer
int curSize = remaining > chunkSize ? chunkSize : remaining
Expand Down

0 comments on commit 06d2f86

Please sign in to comment.