debian-mirror-gitlab/app/workers/cluster_upgrade_app_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
434 B
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
2023-01-13 00:05:48 +05:30
# DEPRECATED
#
# To be removed by https://gitlab.com/gitlab-org/gitlab/-/issues/366573
2020-04-08 14:13:33 +05:30
class ClusterUpgradeAppWorker # rubocop:disable Scalability/IdempotentWorker
2019-03-02 22:35:43 +05:30
include ApplicationWorker
2021-06-08 01:23:25 +05:30
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2019-03-02 22:35:43 +05:30
include ClusterQueue
include ClusterApplications
2019-12-26 22:10:19 +05:30
worker_has_external_dependencies!
2020-06-23 00:09:42 +05:30
loggable_arguments 0
2019-12-26 22:10:19 +05:30
2023-01-13 00:05:48 +05:30
def perform(app_name, app_id); end
2019-03-02 22:35:43 +05:30
end