fix(core): Waiting workflows not stopping (#5811)

fix: Waiting workflows not stopping
This commit is contained in:
Val
2023-03-30 10:12:29 +01:00
committed by GitHub
parent 739b9b07f0
commit 744c3fd211
4 changed files with 5 additions and 5 deletions

View File

@@ -165,7 +165,7 @@ export interface IExecutionBase {
// Data in regular format with references
export interface IExecutionDb extends IExecutionBase {
data: IRunExecutionData;
waitTill?: Date;
waitTill?: Date | null;
workflowData?: IWorkflowBase;
}
@@ -179,7 +179,7 @@ export interface IExecutionResponse extends IExecutionBase {
data: IRunExecutionData;
retryOf?: string;
retrySuccessId?: string;
waitTill?: Date;
waitTill?: Date | null;
workflowData: IWorkflowBase;
}