allow insecureSkipVerify

This commit is contained in:
Maxwell Kuo 2025-05-30 13:01:04 +08:00
parent 07f35e0a06
commit ed38ee9172

View File

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