Fix a typo in an error message

This commit is contained in:
Andreas Kohn 2017-03-30 13:00:31 +02:00 committed by GitHub
parent e385c05a80
commit 33715a9c8e

View file

@ -112,7 +112,7 @@ func (ic *GenericController) getPemCertificate(secretName string) (*ingress.SSLC
glog.Infof("found only ca.crt, configuring %v as an Certificate Authentication secret", secretName)
s, err = ssl.AddCertAuth(nsSecName, ca)
} else {
return nil, fmt.Errorf("ko keypair or CA cert could be found in %v", secretName)
return nil, fmt.Errorf("no keypair or CA cert could be found in %v", secretName)
}
if err != nil {