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
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20170104150317_requeue_pending_delete_projects.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20170104150317_requeue_pending_delete_projects.rb b/db/post_migrate/20170104150317_requeue_pending_delete_projects.rb
index f5423912b89..c2265858000 100644
--- a/db/post_migrate/20170104150317_requeue_pending_delete_projects.rb
+++ b/db/post_migrate/20170104150317_requeue_pending_delete_projects.rb
@@ -19,7 +19,7 @@ class RequeuePendingDeleteProjects < ActiveRecord::Migration
args = ids.map { |id| [id['id'], admin.id, {}] }
- Sidekiq::Client.push_bulk('class' => ProjectDestroyWorker, 'args' => args)
+ Sidekiq::Client.push_bulk('class' => "ProjectDestroyWorker", 'args' => args)
@offset += 1
end