From 728b089dd0b76102c21c29fcb28adf92cf4d554f Mon Sep 17 00:00:00 2001 From: rharpavat Date: Wed, 14 Feb 2024 17:33:15 +0000 Subject: [PATCH] Fix gofmt issues --- apps/tests/devapps/client_certificate_sample.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/tests/devapps/client_certificate_sample.go b/apps/tests/devapps/client_certificate_sample.go index 4f29d3aa..c55ed571 100644 --- a/apps/tests/devapps/client_certificate_sample.go +++ b/apps/tests/devapps/client_certificate_sample.go @@ -28,8 +28,8 @@ func createAppWithCert() *confidential.Client { // This extracts our public certificates and private key from the PEM file. If it is // encrypted, the second argument must be password to decode. - // IMPORTANT SECURITY NOTICE: never store passwords in code. The recommended pattern is to keep the certificate in a vault (e.g. Azure KeyVault) - // and to download it when the application starts. + // IMPORTANT SECURITY NOTICE: never store passwords in code. The recommended pattern is to keep the certificate in a vault (e.g. Azure KeyVault) + // and to download it when the application starts. certs, privateKey, err := confidential.CertFromPEM(pemData, "") if err != nil { log.Fatal(err)