Remove fmt.Println of client certificate (#86773)

This commit is contained in:
George Robinson
2024-04-23 15:15:52 +01:00
committed by GitHub
parent 2fb38a34ac
commit 2049f766c6

View File

@ -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
}