mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 18:38:17 +00:00
fix(javaEntityClient): correct config parameter (#12287)
This commit is contained in:
parent
cbb36bbe59
commit
98a5a2c086
@ -775,7 +775,8 @@ public class JavaEntityClient implements EntityClient {
|
||||
|
||||
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 =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user