1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

fix(AWS DynamoDB Node): Improve error message parsing (#7793)

Github issue / Community forum post (link here to close automatically):
This commit is contained in:
Marcus 2023-11-29 13:44:13 +01:00 committed by कारतोफ्फेलस्क्रिप्ट™
parent 0c881f1d23
commit df0616338f

View File

@ -37,9 +37,11 @@ export async function awsApiRequest(
(await this.helpers.requestWithAuthentication.call(this, 'aws', requestOptions)) as string,
);
} catch (error) {
const errorMessage =
const statusCode = (error.statusCode || error.cause?.statusCode) as number;
let errorMessage =
error.response?.body?.message || error.response?.body?.Message || error.message;
if (error.statusCode === 403) {
if (statusCode === 403) {
if (errorMessage === 'The security token included in the request is invalid.') {
throw new Error('The AWS credentials are not valid!');
} else if (
@ -51,7 +53,13 @@ export async function awsApiRequest(
}
}
throw new Error(`AWS error response [${error.statusCode}]: ${errorMessage}`);
if (error.cause?.error) {
try {
errorMessage = JSON.parse(error.cause?.error).message;
} catch (ex) {}
}
throw new Error(`AWS error response [${statusCode}]: ${errorMessage}`);
}
}