Skip to content

Commit

Permalink
not call prefetch without flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sriram-atlan committed Mar 6, 2025
1 parent a1d977e commit 618686f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public AtlasObjectId toAtlasObjectId(AtlasVertex entityVertex) throws AtlasBaseE
referenceVertexProperties = preloadProperties(entityVertex, entityType, relationAttributes, false);
}
for (AtlasAttribute attribute : entityType.getUniqAttributes().values()) {
Object attrValue = getVertexAttributePreFetchCache(entityVertex, attribute, referenceVertexProperties);
Object attrValue = getVertexAttribute(entityVertex, attribute);

if (attrValue != null) {
uniqueAttributes.put(attribute.getName(), attrValue);
Expand Down

0 comments on commit 618686f

Please sign in to comment.