Skip to content

Commit

Permalink
PLT-191: remove parallel calls for attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
n5nk committed Nov 15, 2023
1 parent f9e0869 commit 15c8daa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ private AtlasEntityHeader mapVertexToAtlasEntityHeader2(AtlasVertex entityVertex
}

if (CollectionUtils.isNotEmpty(attributes)) {
attributes.stream().parallel().forEach(att->{
attributes.forEach(att->{
try {
enrichAttributes(entityVertex, entityType, att, ret);
} catch (AtlasBaseException e) {
Expand Down

0 comments on commit 15c8daa

Please sign in to comment.