Welcome to mirror list, hosted at ThFree Co, Russian Federation.

schedule_delete_objects_cron_worker.rb « ci « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55b23bbab62a01a2e7591c01faffbc29b9cec5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Ci
  class ScheduleDeleteObjectsCronWorker
    include ApplicationWorker

    data_consistency :always

    # 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