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

schedule_unlock_pipelines_in_queue_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: 1a59332612006d252ff200373ab7235945727af2 (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 ScheduleUnlockPipelinesInQueueCronWorker
    include ApplicationWorker

    data_consistency :always # rubocop:disable SidekiqLoadBalancing/WorkerDataConsistency

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

    feature_category :build_artifacts
    idempotent!

    def perform(...)
      Ci::UnlockPipelinesInQueueWorker.perform_with_capacity(...)
    end
  end
end