From 09ac23d8a615b8219541653cd8645afe4a471178 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:29:18 +0200 Subject: [PATCH] [v10.2.x] Remove fmt.Println of client certificate (#86781) 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 0f7b98e5e63..060f06ca04c 100644 --- a/pkg/services/datasources/service/datasource.go +++ b/pkg/services/datasources/service/datasource.go @@ -608,7 +608,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 }