2018-11-15 04:17:41 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class ClusterProjectConfigureWorker # rubocop:disable Scalability/IdempotentWorker
|
2018-11-15 04:17:41 -05:00
|
|
|
include ApplicationWorker
|
|
|
|
include ClusterQueue
|
|
|
|
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_has_external_dependencies!
|
|
|
|
|
2018-11-15 04:17:41 -05:00
|
|
|
def perform(project_id)
|
2019-09-18 10:02:45 -04:00
|
|
|
# Scheduled for removal in https://gitlab.com/gitlab-org/gitlab-foss/issues/59319
|
2018-11-15 04:17:41 -05:00
|
|
|
end
|
|
|
|
end
|