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 5777d93 commit d5ad0c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ private AtlasEntityHeader mapVertexToAtlasEntityHeader2(AtlasVertex entityVertex
AtlasEntityType entityType = typeRegistry.getEntityTypeByName(typeName);

if (entityType != null) {
entityType.getHeaderAttributes().values().stream().parallel().forEach(headerAttribute->{
entityType.getHeaderAttributes().values().forEach(headerAttribute->{
try {
Object attrValue = getVertexAttribute(entityVertex, headerAttribute);
if (attrValue != null) {
Expand Down

0 comments on commit d5ad0c3

Please sign in to comment.