trabajo-afectivo/app/jobs/active_job_lock_cleanup_job.rb

8 lines
191 B
Ruby
Raw Normal View History

class ActiveJobLockCleanupJob < ApplicationJob
include HasActiveJobLock
def perform(diff = 1.day)
::ActiveJobLock.where('created_at < ?', Time.zone.now - diff).destroy_all
end
end