Skip to content

Commit

Permalink
Merge pull request #2925 from atlanhq/exclude-classification-names
Browse files Browse the repository at this point in the history
fix: add classificationNames not classifcations
  • Loading branch information
sumandas0 authored Apr 9, 2024
2 parents c0400c9 + bc9269e commit fe337fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ private AtlasEntityHeader mapVertexToAtlasEntityHeader(AtlasVertex entityVertex,
if(includeClassifications){
ret.setClassificationNames(getAllTraitNamesFromAttribute(entityVertex));
} else if (!includeClassifications && includeClassificationNames) {
ret.setClassifications(getAllClassifications(entityVertex));
ret.setClassificationNames(getAllTraitNamesFromAttribute(entityVertex));
}
ret.setIsIncomplete(isIncomplete);
ret.setLabels(getLabels(entityVertex));
Expand Down

0 comments on commit fe337fc

Please sign in to comment.