Skip to content

Commit

Permalink
use attribute.getName() in properties Map
Browse files Browse the repository at this point in the history
  • Loading branch information
sriram-atlan committed Nov 28, 2024
1 parent 937c62e commit cf12b63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1984,8 +1984,8 @@ public Object getVertexAttributePreFetchCache(AtlasVertex vertex, AtlasAttribute
return null;
}

if (properties.get(attribute) != null) {
return properties.get(attribute);
if (properties.get(attribute.getName()) != null) {
return properties.get(attribute.getName());
}
return null;
}
Expand Down

0 comments on commit cf12b63

Please sign in to comment.