2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ClusterPatchAppWorker
|
|
|
|
include ApplicationWorker
|
|
|
|
include ClusterQueue
|
|
|
|
include ClusterApplications
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
worker_has_external_dependencies!
|
|
|
|
|
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
|