Fix BDC auth (#16053)

This commit is contained in:
Charles Gagnon
2021-07-09 11:56:54 -07:00
committed by GitHub
parent 27823e9900
commit 0045193262
4 changed files with 7 additions and 19 deletions

View File

@@ -20,9 +20,7 @@ class SslAuth implements Authentication {
constructor() { }
applyToRequest(requestOptions: request.Options): void {
requestOptions['agentOptions'] = {
rejectUnauthorized: !getIgnoreSslVerificationConfigSetting()
};
requestOptions.rejectUnauthorized = !getIgnoreSslVerificationConfigSetting();
}
}