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

20211103141403_remove_propagate_service_template_worker.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d949641dbcee4da43649220d152cb8c488eaad3f (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemovePropagateServiceTemplateWorker < Gitlab::Database::Migration[1.0]
  def up
    Sidekiq::Queue.new('propagate_service_template').clear
  end

  def down
    # no-op
  end
end