Improve workflow retry

This commit is contained in:
Jan Oberhauser
2019-08-09 07:37:10 +02:00
parent d59a043e3f
commit 886100eeef
9 changed files with 38 additions and 25 deletions

View File

@@ -4,10 +4,10 @@ import {
import {
createDeferredPromise,
IExecutionsCurrentSummary,
} from 'n8n-core';
import {
IExecutionsCurrentSummary,
IExecutingWorkflowData,
IWorkflowExecutionDataProcess,
} from '.';
@@ -131,6 +131,7 @@ export class ActiveExecutions {
returnData.push(
{
id,
retryOf: data.executionData.retryOf as string | undefined,
startedAt: data.startedAt,
mode: data.executionData.executionMode,
workflowId: data.executionData.workflowData.id! as string,