feat: use ES2022 native error chaining to improve error reporting (#4431)

feat: use ES2022 native error chaining
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2022-10-26 11:55:39 +02:00
committed by GitHub
parent 3a9684df9f
commit 1f610b90f6
9 changed files with 69 additions and 74 deletions

View File

@@ -717,8 +717,7 @@ export class ActiveWorkflowRunner {
// Run Error Workflow if defined
const activationError = new WorkflowActivationError(
`There was a problem with the trigger node "${node.name}", for that reason did the workflow had to be deactivated`,
error,
node,
{ cause: error, node },
);
this.executeErrorWorkflow(activationError, workflowData, mode);