Skip to content

Commit

Permalink
fix(flow): remove repeat option from FlowJob opts (#853) fixes #851
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf authored Nov 3, 2021
1 parent 0460246 commit c9ee2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/flow-job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface FlowJob {
queueName: string;
data?: any;
prefix?: string;
opts?: Omit<JobsOptions, 'parent'>;
opts?: Omit<JobsOptions, 'parent' | 'repeat'>;
children?: FlowJob[];
}

Expand Down

0 comments on commit c9ee2f1

Please sign in to comment.