mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(Elasticsearch Node): Fix issue with self signed certificates (#9805)
This commit is contained in:
@@ -51,7 +51,6 @@ export class ElasticsearchApi implements ICredentialType {
|
|||||||
username: '={{$credentials.username}}',
|
username: '={{$credentials.username}}',
|
||||||
password: '={{$credentials.password}}',
|
password: '={{$credentials.password}}',
|
||||||
},
|
},
|
||||||
skipSslCertificateValidation: '={{$credentials.ignoreSSLIssues}}',
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -59,6 +58,7 @@ export class ElasticsearchApi implements ICredentialType {
|
|||||||
request: {
|
request: {
|
||||||
baseURL: '={{$credentials.baseUrl}}',
|
baseURL: '={{$credentials.baseUrl}}',
|
||||||
url: '/_xpack?human=false',
|
url: '/_xpack?human=false',
|
||||||
|
skipSslCertificateValidation: '={{$credentials.ignoreSSLIssues}}',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user