mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
fix(core): Reset destination node after partial execution of tools (#16376)
This commit is contained in:
@@ -358,6 +358,7 @@ export class WorkflowExecute {
|
||||
destinationNodeName,
|
||||
'a destinationNodeName is required for the new partial execution flow',
|
||||
);
|
||||
const originalDestination = destinationNodeName;
|
||||
|
||||
let destination = workflow.getNode(destinationNodeName);
|
||||
assert.ok(
|
||||
@@ -456,6 +457,7 @@ export class WorkflowExecute {
|
||||
this.runExecutionData = {
|
||||
startData: {
|
||||
destinationNode: destinationNodeName,
|
||||
originalDestinationNode: originalDestination,
|
||||
runNodeFilter: Array.from(filteredNodes.values()).map((node) => node.name),
|
||||
},
|
||||
resultData: {
|
||||
|
||||
Reference in New Issue
Block a user