2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
# 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
|
2021-10-27 15:23:28 +05:30
|
|
|
data_consistency :always
|
2021-06-08 01:23:25 +05:30
|
|
|
sidekiq_options retry: 3
|
2017-09-10 17:25:29 +05:30
|
|
|
sidekiq_options dead: false
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :integrations
|
2021-10-27 15:23:28 +05:30
|
|
|
urgency :low
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
worker_has_external_dependencies!
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|