From dda05484cfa7a784a97a9113316d487bad2622c7 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:28:21 +0200 Subject: [PATCH] [v9.5.x] Remove fmt.Println of client certificate (#86782) 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 39e90579553..6614134eec2 100644 --- a/pkg/services/datasources/service/datasource.go +++ b/pkg/services/datasources/service/datasource.go @@ -511,7 +511,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 }