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

20220628122622_rename_builds_sidekiq_queues_to_namespaces.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f692d1476cebb73d96481023d060763a310523e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class RenameBuildsSidekiqQueuesToNamespaces < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_main
  disable_ddl_transaction!

  BUILD_OLD_QUEUE = 'pipeline_processing:build_finished'
  BUILD_NEW_QUEUE = 'pipeline_processing:ci_build_finished'

  TRACE_OLD_QUEUE = 'pipeline_background:archive_trace'
  TRACE_NEW_QUEUE = 'pipeline_background:ci_archive_trace'

  def up
    sidekiq_queue_migrate BUILD_OLD_QUEUE, to: BUILD_NEW_QUEUE
    sidekiq_queue_migrate TRACE_OLD_QUEUE, to: TRACE_NEW_QUEUE
  end

  def down
    sidekiq_queue_migrate BUILD_NEW_QUEUE, to: BUILD_OLD_QUEUE
    sidekiq_queue_migrate TRACE_NEW_QUEUE, to: TRACE_OLD_QUEUE
  end
end