debian-mirror-gitlab/app/workers/cluster_configure_worker.rb

11 lines
281 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class ClusterConfigureWorker # rubocop:disable Scalability/IdempotentWorker
2019-02-15 15:39:39 +05:30
include ApplicationWorker
include ClusterQueue
def perform(cluster_id)
2019-12-04 20:38:33 +05:30
# Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
2019-02-15 15:39:39 +05:30
end
end