debian-mirror-gitlab/app/workers/clusters/cleanup/app_worker.rb
2019-12-26 22:10:19 +05:30

16 lines
384 B
Ruby

# frozen_string_literal: true
module Clusters
module Cleanup
class AppWorker
include ApplicationWorker
include ClusterQueue
include ClusterApplications
# TODO: Merge with https://gitlab.com/gitlab-org/gitlab/merge_requests/16954
# We're splitting the above MR in smaller chunks to facilitate reviews
def perform
end
end
end
end