From 2049f766c6729f20d04b0eaeb3db313aa5eace60 Mon Sep 17 00:00:00 2001 From: George Robinson Date: Tue, 23 Apr 2024 15:15:52 +0100 Subject: [PATCH] Remove fmt.Println of client certificate (#86773) --- pkg/services/datasources/service/datasource.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/services/datasources/service/datasource.go b/pkg/services/datasources/service/datasource.go index 37c493e3b1a..ac2cb09a6f6 100644 --- a/pkg/services/datasources/service/datasource.go +++ b/pkg/services/datasources/service/datasource.go @@ -595,7 +595,6 @@ func (s *Service) dsTLSOptions(ctx context.Context, ds *datasources.DataSource) if tlsClientAuth { if val, exists, err := s.DecryptedValue(ctx, ds, "tlsClientCert"); err == nil { - fmt.Print("\n\n\n\n", val, exists, err, "\n\n\n\n") if exists && len(val) > 0 { opts.ClientCertificate = val }