Skip to content

Commit

Permalink
fix(batch-ingest-config): java entity client batch ingest config
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed Jan 8, 2025
1 parent b76db33 commit 22869a2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,8 @@ public List<String> batchIngestProposals(

List<String> updatedUrns = new ArrayList<>();
Iterators.partition(
metadataChangeProposals.iterator(), Math.max(1, entityClientConfig.getBatchGetV2Size()))
metadataChangeProposals.iterator(),
Math.max(1, entityClientConfig.getBatchIngestSize()))
.forEachRemaining(
batch -> {
AspectsBatch aspectsBatch =
Expand Down

0 comments on commit 22869a2

Please sign in to comment.