summaryrefslogtreecommitdiff
path: root/app/workers/clusters/applications/wait_for_uninstall_app_worker.rb
blob: dc842788374706e4a70a83a5e1232a0584f9c79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Clusters
  module Applications
    class WaitForUninstallAppWorker # rubocop:disable Scalability/IdempotentWorker
      include ApplicationWorker
      include ClusterQueue
      include ClusterApplications

      INTERVAL = 10.seconds
      TIMEOUT = 20.minutes

      worker_has_external_dependencies!
      worker_resource_boundary :cpu
      loggable_arguments 0

      def perform(app_name, app_id)
        find_application(app_name, app_id) do |app|
          Clusters::Applications::CheckUninstallProgressService.new(app).execute
        end
      end
    end
  end
end