mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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
@@ -107,10 +107,8 @@ class WorkflowRunnerProcess {
|
||||
// Init db since we need to read the license.
|
||||
await Db.init();
|
||||
|
||||
const loadNodesAndCredentials = Container.get(LoadNodesAndCredentials);
|
||||
await loadNodesAndCredentials.init();
|
||||
|
||||
const nodeTypes = Container.get(NodeTypes);
|
||||
await Container.get(LoadNodesAndCredentials).init();
|
||||
|
||||
// Load all external hooks
|
||||
const externalHooks = Container.get(ExternalHooks);
|
||||
|
||||
Reference in New Issue
Block a user