allow insecureSkipVerify #1

Merged
Maxwell merged 1 commits from allow-insecureSkipVerify into main 2025-05-30 13:01:52 +08:00

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