From ed38ee91728cf50eec2084d501bb5ede40c6cd66 Mon Sep 17 00:00:00 2001 From: Maxwell Kuo Date: Fri, 30 May 2025 13:01:04 +0800 Subject: [PATCH] allow insecureSkipVerify --- FeeAuditUtils.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FeeAuditUtils.go b/FeeAuditUtils.go index 26cbe83..b4d8a5a 100644 --- a/FeeAuditUtils.go +++ b/FeeAuditUtils.go @@ -90,7 +90,9 @@ func (f *FeeAuditUtils) httpsPost(funcName string, writeoffRequest WriteoffReque client := &http.Client{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{ - RootCAs: caCertPool, + // Maxwell 2025-05-30 Current CA cert probably outdated, skip verification based on PO's request + InsecureSkipVerify: true, + RootCAs: caCertPool, }, }, }