mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
fix(core): Fix issue with restarting waiting executions (#3531)
This commit is contained in:
parent
a6399662b0
commit
c9273bcd38
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue