mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(AWS S3 Node): Fix File upload, and add node tests (#6153)
This commit is contained in:
committed by
GitHub
parent
a0dd17e115
commit
deb4c04f34
@@ -373,7 +373,7 @@ export class NodeApiError extends NodeError {
|
||||
this.message = STATUS_CODE_MESSAGES['5XX'];
|
||||
break;
|
||||
default:
|
||||
this.message = UNKNOWN_ERROR_MESSAGE;
|
||||
this.message = this.message || UNKNOWN_ERROR_MESSAGE;
|
||||
}
|
||||
if (this.node.type === 'n8n-nodes-base.noOp' && this.message === UNKNOWN_ERROR_MESSAGE) {
|
||||
this.message = `${UNKNOWN_ERROR_MESSAGE_CRED} - ${this.httpCode}`;
|
||||
|
||||
Reference in New Issue
Block a user