Skip to content

Commit

Permalink
Merge pull request #352 from dvonthenen/issue351case
Browse files Browse the repository at this point in the history
Remove ToLower when using FQDN
  • Loading branch information
k8s-ci-robot authored Jul 9, 2020
2 parents 6872a0b + d1b138d commit 82f5767
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/common/credentialmanager/credentialmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ func parseConfig(data map[string][]byte, config map[string]*Credential) error {
return ErrCredentialMissing
}
for credentialKey, credentialValue := range data {
credentialKey = strings.ToLower(credentialKey)
if strings.HasSuffix(credentialKey, "password") {
vcServer := strings.Split(credentialKey, ".password")[0]
if _, ok := config[vcServer]; !ok {
Expand Down

0 comments on commit 82f5767

Please sign in to comment.