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

background_migration_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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