mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(awsLambda Node): fix json data being sent to AWS Lambda as string (#4029)
Fix AWS lamba by not sending json as string
This commit is contained in:
committed by
GitHub
parent
d554128457
commit
c28f69b276
@@ -1,6 +1,3 @@
|
||||
import { URL } from 'url';
|
||||
import { Request, sign } from 'aws4';
|
||||
import { OptionsWithUri } from 'request';
|
||||
import { parseString as parseXml } from 'xml2js';
|
||||
|
||||
import {
|
||||
@@ -10,7 +7,7 @@ import {
|
||||
IWebhookFunctions,
|
||||
} from 'n8n-core';
|
||||
|
||||
import { ICredentialDataDecryptedObject, IHttpRequestOptions, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
||||
import { IHttpRequestOptions, NodeApiError } from 'n8n-workflow';
|
||||
|
||||
export async function awsApiRequest(
|
||||
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
||||
@@ -28,14 +25,14 @@ export async function awsApiRequest(
|
||||
path,
|
||||
},
|
||||
method,
|
||||
body: JSON.stringify(body),
|
||||
body: service === 'lambda' ? body : JSON.stringify(body),
|
||||
url: '',
|
||||
headers,
|
||||
region: credentials?.region as string,
|
||||
} as IHttpRequestOptions;
|
||||
|
||||
try {
|
||||
return await this.helpers.requestWithAuthentication.call(this,'aws', requestOptions);
|
||||
return await this.helpers.requestWithAuthentication.call(this, 'aws', requestOptions);
|
||||
} catch (error) {
|
||||
throw new NodeApiError(this.getNode(), error, { parseXml: true });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user