From 33715a9c8e2858690f368dca475c760c7adb1a98 Mon Sep 17 00:00:00 2001 From: Andreas Kohn Date: Thu, 30 Mar 2017 13:00:31 +0200 Subject: [PATCH] Fix a typo in an error message --- core/pkg/ingress/controller/backend_ssl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pkg/ingress/controller/backend_ssl.go b/core/pkg/ingress/controller/backend_ssl.go index 977484081..74d1da3d0 100644 --- a/core/pkg/ingress/controller/backend_ssl.go +++ b/core/pkg/ingress/controller/backend_ssl.go @@ -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 {