Fix bug with lowercasing #15

Open
Kidswiss wants to merge 1 commits from Kidswiss/bottin:fix/lowercase into main
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ func dnToConsul(dn string) (string, error) {
rdns[i], rdns[j] = rdns[j], rdns[i]
}
return strings.Join(rdns, "/"), nil
concattedPath := strings.Join(rdns, "/")
return strings.ToLower(concattedPath), nil
}
func consulToDN(key string) (string, string, error) {