mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
fix(core): Ensure nodes post-processors run in the correct order (#7500)
Fixes #7497
This commit is contained in:
committed by
GitHub
parent
c47d27dd6d
commit
6f45298d3d
@@ -47,8 +47,8 @@ export abstract class BaseCommand extends Command {
|
||||
// Make sure the settings exist
|
||||
this.instanceSettings = Container.get(InstanceSettings);
|
||||
|
||||
await Container.get(LoadNodesAndCredentials).init();
|
||||
this.nodeTypes = Container.get(NodeTypes);
|
||||
await Container.get(LoadNodesAndCredentials).init();
|
||||
|
||||
await Db.init().catch(async (error: Error) =>
|
||||
this.exitWithCrash('There was an error initializing DB', error),
|
||||
|
||||
Reference in New Issue
Block a user