mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FIX: Add onceoff job to remove old auto close topic sidekiq jobs.
This commit is contained in:
parent
3eb125c39b
commit
e8eaffbd72
1 changed files with 10 additions and 0 deletions
10
app/jobs/onceoff/remove_old_auto_close_jobs.rb
Normal file
10
app/jobs/onceoff/remove_old_auto_close_jobs.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
module Jobs
|
||||
class RemoveOldAutoCloseJobs < Jobs::Onceoff
|
||||
def execute_onceoff(args)
|
||||
Jobs.cancel_scheduled_for(:close_topic)
|
||||
|
||||
# No need to enqueue new jobs since we have a scheduled job that will
|
||||
# automatically enqueue the new jobs.
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue