From b11c4645bb94e3ae71d0553e60600842701756b1 Mon Sep 17 00:00:00 2001 From: Sahiba Gupta Date: Tue, 19 Jul 2022 11:01:51 -0400 Subject: [PATCH] Address indentation issue --- cmd/sidecar-proxy/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/sidecar-proxy/main.go b/cmd/sidecar-proxy/main.go index 2337cef8..41782554 100644 --- a/cmd/sidecar-proxy/main.go +++ b/cmd/sidecar-proxy/main.go @@ -210,9 +210,9 @@ func run(log *logrus.Entry) error { } skipCertValue, _ := os.LookupEnv("SKIP_CERTIFICATE_VALIDATION") insecureValue, _ := os.LookupEnv("INSECURE") - if skipCertValue == "true" || insecureValue == "true" { - insecureProxy = true - } + if skipCertValue == "true" || insecureValue == "true" { + insecureProxy = true + } driverConfigParamsFile = flag.String("driver-config-params", "", "Full path to the YAML file containing the driver ConfigMap") flag.Parse()