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

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

class RemoveElasticBatchProjectIndexerWorkerQueue < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    Sidekiq.redis do |conn|
      conn.del "queue:elastic_batch_project_indexer"
    end
  end
end