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

cluster_configure_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9364ab7144d69897e887116b1bc5a5fcb480c88 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class ClusterConfigureWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker
  include ClusterQueue

  def perform(cluster_id)
    # Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
  end
end