Skip to content

Commit

Permalink
fix(core): Fix high volume of node operation errors in Sentry (#13053)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored Feb 6, 2025
1 parent 4c2546d commit e59d983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/workflow/src/errors/node-operation.error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class NodeOperationError extends NodeError {
}

if (typeof error === 'string') {
error = new ApplicationError(error);
error = new ApplicationError(error, { level: options.level ?? 'warning' });
}

super(node, error);
Expand Down

0 comments on commit e59d983

Please sign in to comment.