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

17 lines
406 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class ClusterPatchAppWorker # rubocop:disable Scalability/IdempotentWorker
2019-07-07 11:18:12 +05:30
include ApplicationWorker
include ClusterQueue
include ClusterApplications
2019-12-26 22:10:19 +05:30
worker_has_external_dependencies!
2020-06-23 00:09:42 +05:30
loggable_arguments 0
2019-12-26 22:10:19 +05:30
2019-07-07 11:18:12 +05:30
def perform(app_name, app_id)
find_application(app_name, app_id) do |app|
Clusters::Applications::PatchService.new(app).execute
end
end
end