Skip to content

Commit

Permalink
#13860: Classification api is failing having dot in it's name (#14209)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshach authored Dec 3, 2023
1 parent b50f6f8 commit 59d0e82
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 59d0e82

Please sign in to comment.