Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deactivate_service_worker.rb « applications « clusters « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88219b8b17e31c19be338ca89f1a08687b78f132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# This worker was renamed in 15.1, we can delete it in 15.2.
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/364112
#
# rubocop:disable Scalability/IdempotentWorker
module Clusters
  module Applications
    class DeactivateServiceWorker < DeactivateIntegrationWorker
    end
  end
end