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: b0e551d4e03d3d3f88ac1c528b5df476b4abcf41 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class ClusterConfigureWorker
  include ApplicationWorker
  include ClusterQueue

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