debian-mirror-gitlab/app/workers/cluster_configure_istio_worker.rb
2023-01-12 18:35:48 +00:00

17 lines
379 B
Ruby

# frozen_string_literal: true
# DEPRECATED
#
# To be removed by https://gitlab.com/gitlab-org/gitlab/-/issues/366573
class ClusterConfigureIstioWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include ClusterQueue
worker_has_external_dependencies!
def perform(cluster_id); end
end