From 7cb431f50644a0896458b6562e8801189254b704 Mon Sep 17 00:00:00 2001 From: pemontto <939704+pemontto@users.noreply.github.com> Date: Wed, 22 May 2024 08:57:34 +0100 Subject: [PATCH] fix(core): Fix typos in common error messages (no-changelog) (#9478) --- packages/workflow/src/errors/abstract/node.error.ts | 10 +++++----- packages/workflow/test/NodeErrors.test.ts | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/workflow/src/errors/abstract/node.error.ts b/packages/workflow/src/errors/abstract/node.error.ts index 060751cd86..dde40284f8 100644 --- a/packages/workflow/src/errors/abstract/node.error.ts +++ b/packages/workflow/src/errors/abstract/node.error.ts @@ -9,11 +9,11 @@ const COMMON_ERRORS: IDataObject = { // nodeJS errors ECONNREFUSED: 'The service refused the connection - perhaps it is offline', ECONNRESET: - 'The connection to the server wes closed unexpectedly, perhaps it is offline. You can retry request immidiately or wait and retry later.', + 'The connection to the server was closed unexpectedly, perhaps it is offline. You can retry the request immediately or wait and retry later.', ENOTFOUND: - 'The connection cannot be established, this usually occurs due to an incorrect host(domain) value', + 'The connection cannot be established, this usually occurs due to an incorrect host (domain) value', ETIMEDOUT: - "The connection timed out, consider setting 'Retry on Fail' option in the node settings", + "The connection timed out, consider setting the 'Retry on Fail' option in the node settings", ERRADDRINUSE: 'The port is already occupied by some other application, if possible change the port or kill the application that is using it', EADDRNOTAVAIL: 'The address is not available, ensure that you have the right IP address', @@ -21,8 +21,8 @@ const COMMON_ERRORS: IDataObject = { EHOSTUNREACH: 'The host is unreachable, perhaps the server is offline', EAI_AGAIN: 'The DNS server returned an error, perhaps the server is offline', ENOENT: 'The file or directory does not exist', - EISDIR: 'The file path expected but a given path is a directory', - ENOTDIR: 'The directory path expected but a given path is a file', + EISDIR: 'The file path was expected but the given path is a directory', + ENOTDIR: 'The directory path was expected but the given path is a file', EACCES: 'Forbidden by access permissions, make sure you have the right permissions', EEXIST: 'The file or directory already exists', EPERM: 'Operation not permitted, make sure you have the right permissions', diff --git a/packages/workflow/test/NodeErrors.test.ts b/packages/workflow/test/NodeErrors.test.ts index 8b9f7fefbb..405c591932 100644 --- a/packages/workflow/test/NodeErrors.test.ts +++ b/packages/workflow/test/NodeErrors.test.ts @@ -81,7 +81,7 @@ describe('NodeErrors tests', () => { const nodeOperationError = new NodeOperationError(node, 'ENOTFOUND test error message'); expect(nodeOperationError.message).toEqual( - 'The connection cannot be established, this usually occurs due to an incorrect host(domain) value', + 'The connection cannot be established, this usually occurs due to an incorrect host (domain) value', ); }); @@ -89,7 +89,7 @@ describe('NodeErrors tests', () => { const nodeApiError = new NodeApiError(node, { message: 'ENOTFOUND test error message' }); expect(nodeApiError.message).toEqual( - 'The connection cannot be established, this usually occurs due to an incorrect host(domain) value', + 'The connection cannot be established, this usually occurs due to an incorrect host (domain) value', ); });