From c9ee2f100a23aa24034598b7d452c69720d7aabd Mon Sep 17 00:00:00 2001 From: Rogger Valverde Date: Tue, 2 Nov 2021 22:07:49 -0500 Subject: [PATCH] fix(flow): remove repeat option from FlowJob opts (#853) fixes #851 --- src/interfaces/flow-job.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/flow-job.ts b/src/interfaces/flow-job.ts index 66d0f77057..e41ad00c18 100644 --- a/src/interfaces/flow-job.ts +++ b/src/interfaces/flow-job.ts @@ -6,7 +6,7 @@ export interface FlowJob { queueName: string; data?: any; prefix?: string; - opts?: Omit; + opts?: Omit; children?: FlowJob[]; }