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

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

class ClusterProjectConfigureWorker
  include ApplicationWorker
  include ClusterQueue

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