summaryrefslogtreecommitdiff
path: root/app/workers/ci/schedule_delete_objects_cron_worker.rb
blob: fa0b15deb561b8963a6eb75f8978a25a4a66262c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Ci
  class ScheduleDeleteObjectsCronWorker
    include ApplicationWorker
    # rubocop:disable Scalability/CronWorkerContext
    # This worker does not perform work scoped to a context
    include CronjobQueue
    # rubocop:enable Scalability/CronWorkerContext

    feature_category :continuous_integration
    idempotent!

    def perform(*args)
      Ci::DeleteObjectsWorker.perform_with_capacity(*args)
    end
  end
end