-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing removeRepeatable() method? #66
Comments
Hi @LeCoupa! Bull
.getByKey('EmailPatternStatsJob')
.bull
.removeRepeatable('EmailPatternStatsJob', repeatOpts) You need to follow the bull's own instructions: removeRepeatable, removeRepeatableByKey. Then we can add something for the provider itself. |
Great thank you 👍 |
Hello, would it be possible to remove a job that is repeating every day of the week? Bull |
you can do it like this, first list all repeated jobs, then get the key and remove them: let repeteadJobs = await Bull.getByKey('TestCronJob').bull.getRepeatableJobs() |
Is there a way to remove a repeatable job with the
removeRepeatable()
method?The text was updated successfully, but these errors were encountered: