Skip to content

Commit

Permalink
fix(queue): change _jobScheduler from private to protected for extension
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed Nov 22, 2024
1 parent 26b2bc6 commit 0d39657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class Queue<
protected libName = 'bullmq';

private _repeat?: Repeat; // To be deprecated in v6 in favor of JobScheduler
private _jobScheduler?: JobScheduler;
protected _jobScheduler?: JobScheduler;

constructor(
name: string,
Expand Down

0 comments on commit 0d39657

Please sign in to comment.