mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(core): Fix issue with restarting waiting executions (#3531)
This commit is contained in:
@@ -1013,10 +1013,11 @@ export class WorkflowExecute {
|
||||
if (!this.runExecutionData.resultData.runData.hasOwnProperty(executionNode.name)) {
|
||||
this.runExecutionData.resultData.runData[executionNode.name] = [];
|
||||
}
|
||||
|
||||
taskData = {
|
||||
startTime,
|
||||
executionTime: new Date().getTime() - startTime,
|
||||
source: executionData.source === null ? [] : executionData.source.main,
|
||||
source: !executionData.source ? [] : executionData.source.main,
|
||||
};
|
||||
|
||||
if (executionError !== undefined) {
|
||||
|
||||
Reference in New Issue
Block a user