BigW Consortium Gitlab

background_migration_worker.rb 285 Bytes
Newer Older
1
class BackgroundMigrationWorker
2
  include ApplicationWorker
3 4 5 6 7 8 9 10

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