diff --git a/pkg/frontend/admin_openshiftcluster_etcdcertificaterenew.go b/pkg/frontend/admin_openshiftcluster_etcdcertificaterenew.go index 33a335b1c12..35ac3dc4787 100644 --- a/pkg/frontend/admin_openshiftcluster_etcdcertificaterenew.go +++ b/pkg/frontend/admin_openshiftcluster_etcdcertificaterenew.go @@ -266,7 +266,7 @@ func (e *etcdrenew) validateEtcdOperatorState(ctx context.Context) error { } func (e *etcdrenew) validateEtcdCertsExistsAndExpiry(ctx context.Context) error { - e.log.Infoln("validating if etcd certs exists, not expired but are close to expiry") + e.log.Infoln("validating if etcd certs exists and expiry") for _, secretname := range e.secretNames { e.log.Infof("validating secret %s", secretname) @@ -295,7 +295,7 @@ func (e *etcdrenew) validateEtcdCertsExistsAndExpiry(ctx context.Context) error return api.NewCloudError(http.StatusInternalServerError, api.CloudErrorCodeInternalServerError, "", "secret %s is already expired, quitting.", secretname) } } - e.log.Infoln("Etcd certs exits, are not expired but close to expiry") + e.log.Infoln("Etcd certs exits, are not expired") return nil }