From 15c8daaea9ad127cf297d428205b2638e2aa62d4 Mon Sep 17 00:00:00 2001 From: naveenaechan Date: Wed, 15 Nov 2023 16:02:56 +0530 Subject: [PATCH] PLT-191: remove parallel calls for attributes --- .../atlas/repository/store/graph/v2/EntityGraphRetriever.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphRetriever.java b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphRetriever.java index 953337c3e4..52946f22a2 100644 --- a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphRetriever.java +++ b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphRetriever.java @@ -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) {