From 02360221459d28748e3e09114ffe21acca5fa1af Mon Sep 17 00:00:00 2001 From: James Elliott Date: Tue, 21 Jun 2022 10:56:20 +1000 Subject: [PATCH] fix(authentication): poorly formatted log message (#3563) This fixes an issue with a log format for LDAP. --- internal/authentication/ldap_user_provider_startup.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/authentication/ldap_user_provider_startup.go b/internal/authentication/ldap_user_provider_startup.go index 4c87c9013..fbaf666fa 100644 --- a/internal/authentication/ldap_user_provider_startup.go +++ b/internal/authentication/ldap_user_provider_startup.go @@ -31,8 +31,8 @@ func (p *LDAPUserProvider) StartupCheck() (err error) { } if p.features.Extensions.TLS && !p.config.StartTLS && !strings.HasPrefix(p.config.URL, "ldaps://") { - p.log.Error("Your LDAP Server supports TLS but you don't appear to be utilizing it. We strongly" + - "recommend enabling the StartTLS option or using the scheme 'ldaps://' to secure connections with your" + + p.log.Error("Your LDAP Server supports TLS but you don't appear to be utilizing it. We strongly " + + "recommend using the scheme 'ldaps://' or enabling the StartTLS option to secure connections with your " + "LDAP Server.") }