Skip to content

Commit

Permalink
fix(Elasticsearch Node): Fix issue with self signed certificates not …
Browse files Browse the repository at this point in the history
…working (#10954)
  • Loading branch information
Joffcom authored Sep 26, 2024
1 parent 4a63cff commit 79622b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export async function elasticsearchApiRequest(
}

try {
return await this.helpers.requestWithAuthentication.call(this, 'elasticsearchApi', options);
return await this.helpers.httpRequestWithAuthentication.call(this, 'elasticsearchApi', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
Expand Down

0 comments on commit 79622b5

Please sign in to comment.