From 28ce8360ab2fadde0f9bbae6f37dab1ef4b16651 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 17:03:49 +0200 Subject: [PATCH] [v10.4.x] Remove fmt.Println of client certificate (#86785) 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 c0f95f56e9b..29feadf6ce0 100644 --- a/pkg/services/datasources/service/datasource.go +++ b/pkg/services/datasources/service/datasource.go @@ -616,7 +616,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 }