#13860: Classification api is failing having dot in it's name (#14209)

This commit is contained in:
Sriharsha Chintalapani 2023-12-03 11:33:17 -08:00 committed by GitHub
parent b50f6f8939
commit 59d0e82ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,9 @@ public class ClassificationRepository extends EntityRepository<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> {