Add config for ignoring SSL errors on BDC queries (#8169)

* Add config for ignoring SSL errors on BDC queries

* Fix error handling in write stream

* Disable tslint check

* Handle promise appropriately

* PR comments

* Change defaults to true
This commit is contained in:
Charles Gagnon
2019-11-01 15:20:47 -07:00
committed by GitHub
parent 08d81927b4
commit abbb1e54da
16 changed files with 100 additions and 46 deletions

View File

@@ -37,8 +37,7 @@ export class SparkJobSubmissionService {
uri: livyUrl,
method: 'POST',
json: true,
// TODO, change it back after service's authentication changed.
rejectUnauthorized: false,
rejectUnauthorized: !auth.getIgnoreSslVerificationConfigSetting(),
body: {
file: submissionArgs.sparkFile,
proxyUser: submissionArgs.user,
@@ -114,7 +113,7 @@ export class SparkJobSubmissionService {
uri: livyUrl,
method: 'GET',
json: true,
rejectUnauthorized: false,
rejectUnauthorized: !auth.getIgnoreSslVerificationConfigSetting(),
// authentication headers
headers: headers
};