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:
authorGabriel Mazetto <brodock@gmail.com>2019-03-01 10:20:52 +0300
committerGabriel Mazetto <brodock@gmail.com>2019-03-01 17:50:27 +0300
commit61d77a042da2ada48cdcd83f97923780aac407f4 (patch)
treeb10a1bdf7d2b578a13dce4c606c35ecc0399d57f /db/post_migrate
parentb91a005162515cfe398d90772ed66ecd92e17531 (diff)
Migrate sidekiq queue to the new :hashed_storage namespace
`project_migrate_hashed_storage` is now `hashed_storage:hashed_storage_project_migrate`
Diffstat (limited to 'db/post_migrate')
-rw-r--r--db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb b/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb
new file mode 100644
index 00000000000..6af7902e0c4
--- /dev/null
+++ b/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class MigrateProjectMigrateSidekiqQueue < ActiveRecord::Migration[5.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ DOWNTIME = false
+
+ def up
+ sidekiq_queue_migrate 'project_migrate_hashed_storage', to: 'hashed_storage:hashed_storage_project_migrate'
+ end
+
+ def down
+ sidekiq_queue_migrate 'hashed_storage:hashed_storage_project_migrate', to: 'project_migrate_hashed_storage'
+ end
+end