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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-25 15:22:28 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-25 15:25:18 +0300
commite984a8a3543fa9a26308cea35a42046392f4a488 (patch)
tree1b5096bc11581b343d20bbf12b5b9c9771eef20b /db/post_migrate
parenta653c8ead4d45ffcab5447a9e38f9742600c0d09 (diff)
Migrate new jobs when reverting pipeline queues migration
Diffstat (limited to 'db/post_migrate')
-rw-r--r--db/post_migrate/20170822101017_migrate_pipeline_sidekiq_queues.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/db/post_migrate/20170822101017_migrate_pipeline_sidekiq_queues.rb b/db/post_migrate/20170822101017_migrate_pipeline_sidekiq_queues.rb
index 48fa3af0c60..8441cfe7968 100644
--- a/db/post_migrate/20170822101017_migrate_pipeline_sidekiq_queues.rb
+++ b/db/post_migrate/20170822101017_migrate_pipeline_sidekiq_queues.rb
@@ -10,5 +10,8 @@ class MigratePipelineSidekiqQueues < ActiveRecord::Migration
def down
sidekiq_queue_migrate 'pipeline_default', to: 'pipeline'
+ sidekiq_queue_migrate 'pipeline_processing', to: 'pipeline'
+ sidekiq_queue_migrate 'pipeline_hooks', to: 'pipeline'
+ sidekiq_queue_migrate 'pipeline_cache', to: 'pipeline'
end
end