debian-mirror-gitlab/app/workers/cluster_project_configure_worker.rb
2020-04-08 14:13:33 +05:30

13 lines
325 B
Ruby

# frozen_string_literal: true
class ClusterProjectConfigureWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ClusterQueue
worker_has_external_dependencies!
def perform(project_id)
# Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
end
end