2
0
Fork 0
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:
Guo Xiang Tan 2017-04-06 10:52:13 +08:00
parent 3eb125c39b
commit e8eaffbd72

View 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