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

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

# This worker was renamed in 15.1, we can delete it in 15.2.
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/364112
#
# rubocop: disable Gitlab/NamespacedClass
# rubocop: disable Scalability/IdempotentWorker
class ProjectServiceWorker < Integrations::ExecuteWorker
  data_consistency :always
  sidekiq_options retry: 3
  sidekiq_options dead: false
  feature_category :integrations
  urgency :low

  worker_has_external_dependencies!
end