From a39b439dcd7ba587b6667fa21754bc434c9265e9 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:53:48 +0200 Subject: [PATCH] [v10.3.x] Remove fmt.Println of client certificate (#86784) Remove fmt.Println of client certificate (#86773) (cherry picked from commit 2049f766c6729f20d04b0eaeb3db313aa5eace60) Co-authored-by: George Robinson --- 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 9a0ec8c7932..33b82f044de 100644 --- a/pkg/services/datasources/service/datasource.go +++ b/pkg/services/datasources/service/datasource.go @@ -613,7 +613,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 }