mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
refactor(core): Stop reporting EAUTH error codes to Sentry (no-changelog) (#9496)
This commit is contained in:
@@ -92,13 +92,7 @@ export class ActiveWorkflows {
|
||||
|
||||
throw new WorkflowActivationError(
|
||||
`There was a problem activating the workflow: "${error.message}"`,
|
||||
{
|
||||
cause: error,
|
||||
node: triggerNode,
|
||||
level: ['ETIMEDOUT', 'ECONNREFUSED'].some((code) => error.message.includes(code))
|
||||
? 'warning'
|
||||
: 'error',
|
||||
},
|
||||
{ cause: error, node: triggerNode },
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user