mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Fix high volume of node operation errors in Sentry (#13053)
This commit is contained in:
@@ -19,7 +19,7 @@ export class NodeOperationError extends NodeError {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof error === 'string') {
|
if (typeof error === 'string') {
|
||||||
error = new ApplicationError(error);
|
error = new ApplicationError(error, { level: options.level ?? 'warning' });
|
||||||
}
|
}
|
||||||
|
|
||||||
super(node, error);
|
super(node, error);
|
||||||
|
|||||||
Reference in New Issue
Block a user