fix(HTTP Request Node): "Ignore SSL issues" should also ignore legacy renegotiation issues (#6492)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2023-06-20 17:38:37 +02:00 committed by GitHub
parent f2154fba60
commit 7a95e08bfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -425,6 +425,7 @@ async function parseRequestObject(requestObject: IDataObject) {
if (requestObject.rejectUnauthorized === false) {
axiosConfig.httpsAgent = new Agent({
rejectUnauthorized: false,
secureOptions: crypto.constants.SSL_OP_LEGACY_SERVER_CONNECT,
});
}