Ran npx prettier against elasticsearch.ts
This commit is contained in:
parent
ac9c52e70f
commit
46a0197cd6
|
@ -100,19 +100,19 @@ class ElasticSearchIntegration implements IntegrationBase {
|
||||||
constructor(config: ElasticsearchConfig) {
|
constructor(config: ElasticsearchConfig) {
|
||||||
this.config = config
|
this.config = config
|
||||||
|
|
||||||
let newConfig = {
|
let newConfig = {
|
||||||
node: this.config.url,
|
node: this.config.url,
|
||||||
ssl: this.config.ssl
|
ssl: this.config.ssl
|
||||||
? {
|
? {
|
||||||
rejectUnauthorized: this.config.rejectUnauthorized,
|
rejectUnauthorized: this.config.rejectUnauthorized,
|
||||||
ca: this.config.ca || undefined,
|
ca: this.config.ca || undefined,
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newConfig.ssl && !newConfig.ssl.ca) {
|
if (newConfig.ssl && !newConfig.ssl.ca) {
|
||||||
delete newConfig.ssl.ca
|
delete newConfig.ssl.ca
|
||||||
} else if(!newConfig.ssl) {
|
} else if (!newConfig.ssl) {
|
||||||
delete newConfig.ssl
|
delete newConfig.ssl
|
||||||
}
|
}
|
||||||
this.client = new Client(newConfig)
|
this.client = new Client(newConfig)
|
||||||
|
|
Loading…
Reference in New Issue