From a740c8e0fb7b231122fd3020fd69ace641c5527c Mon Sep 17 00:00:00 2001 From: Rob Ulbrich Date: Thu, 4 Jul 2024 13:54:20 +0200 Subject: [PATCH] Fixing lint Signed-off-by: Rob Ulbrich --- .../pkg/async/notifications/implementations/smtp_emailer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flyteadmin/pkg/async/notifications/implementations/smtp_emailer.go b/flyteadmin/pkg/async/notifications/implementations/smtp_emailer.go index 90190d8a03..3e68651e6e 100644 --- a/flyteadmin/pkg/async/notifications/implementations/smtp_emailer.go +++ b/flyteadmin/pkg/async/notifications/implementations/smtp_emailer.go @@ -123,7 +123,7 @@ func NewSMTPEmailer(ctx context.Context, config runtimeInterfaces.NotificationsC auth := smtp.PlainAuth("", emailConf.SMTPUsername, smtpPassword, emailConf.SMTPServer) - tlsConfiguration = &tls.Config{ + tlsConfiguration = &tls.Config{ // #nosec G402 InsecureSkipVerify: emailConf.SMTPSkipTLSVerify, ServerName: emailConf.SMTPServer, }