1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00

Ran npx prettier against elasticsearch.ts

This commit is contained in:
chaoticefx 2022-10-27 16:24:01 +08:00 committed by GitHub
parent b41cffab7b
commit 20a231b842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,19 +100,19 @@ class ElasticSearchIntegration implements IntegrationBase {
constructor(config: ElasticsearchConfig) {
this.config = config
let newConfig = {
let newConfig = {
node: this.config.url,
ssl: this.config.ssl
ssl: this.config.ssl
? {
rejectUnauthorized: this.config.rejectUnauthorized,
ca: this.config.ca || undefined,
}
rejectUnauthorized: this.config.rejectUnauthorized,
ca: this.config.ca || undefined,
}
: undefined,
}
if (newConfig.ssl && !newConfig.ssl.ca) {
delete newConfig.ssl.ca
} else if(!newConfig.ssl) {
} else if (!newConfig.ssl) {
delete newConfig.ssl
}
this.client = new Client(newConfig)