mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Fix task runner error propagation (no-changelog) (#11291)
This commit is contained in:
@@ -21,10 +21,6 @@ export class WrappedExecutionError extends ApplicationError {
|
||||
|
||||
private copyErrorProperties(error: WrappableError) {
|
||||
for (const key of Object.getOwnPropertyNames(error)) {
|
||||
if (key === 'message' || key === 'stack') {
|
||||
continue;
|
||||
}
|
||||
|
||||
this[key] = error[key];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user