Skip to content

Commit

Permalink
#13860: Classification api is failing having dot in it's name
Browse files Browse the repository at this point in the history
  • Loading branch information
harshach committed Dec 2, 2023
1 parent f5327eb commit 8950c6e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ private int getTermCount(Classification classification) {
}

private Integer getUsageCount(Classification classification) {
return daoCollection.tagUsageDAO().getTagCount(TagSource.CLASSIFICATION.ordinal(), classification.getName());
return daoCollection
.tagUsageDAO()
.getTagCount(TagSource.CLASSIFICATION.ordinal(), classification.getFullyQualifiedName());
}

public static class TagLabelMapper implements RowMapper<TagLabel> {
Expand Down

0 comments on commit 8950c6e

Please sign in to comment.