From ec5de11d69073ab38b49c772e598dc45920d7e43 Mon Sep 17 00:00:00 2001 From: taras810 <67583944+taras810@users.noreply.github.com> Date: Mon, 26 Jul 2021 15:12:31 +0300 Subject: [PATCH] Changed InsecureSkipVerify option to false Changed InsecureSkipVerify option to false according to https://getverygood.slack.com/archives/CF30MJX7E/p1626297858129300 --- content-by-language/go/outbound-integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content-by-language/go/outbound-integration.go b/content-by-language/go/outbound-integration.go index 908a835..7124fc7 100644 --- a/content-by-language/go/outbound-integration.go +++ b/content-by-language/go/outbound-integration.go @@ -42,7 +42,7 @@ func main() { Proxy: http.ProxyFromEnvironment, TLSClientConfig: &tls.Config{ RootCAs: caCertPool, - InsecureSkipVerify: true, + InsecureSkipVerify: false, }, }, }