mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
11 lines
229 B
Ruby
11 lines
229 B
Ruby
class CleanupSuccessfulJobsJob < ApplicationJob
|
|
queue_as :literally_whenever
|
|
|
|
include HasEnqueueControl
|
|
enqueue_limit
|
|
|
|
def perform
|
|
GoodJob.cleanup_preserved_jobs(older_than: 1.day, include_discarded: false)
|
|
end
|
|
end
|