summaryrefslogtreecommitdiff
path: root/app/workers/background_migration_worker.rb
blob: aeb3bc019b98b9f1a5f73fcfaf44488d1e32f8a7 (plain)
1
2
3
4
5
6
7
8
9
10
class BackgroundMigrationWorker
  include ApplicationWorker

  # Performs the background migration.
  #
  # See Gitlab::BackgroundMigration.perform for more information.
  def perform(class_name, arguments = [])
    Gitlab::BackgroundMigration.perform(class_name, arguments)
  end
end