summaryrefslogtreecommitdiff
path: root/app/workers/storage_migrator_worker.rb
blob: 0aff0c4c7c65fd7c6e0bb0a9e533792af82162a3 (plain)
1
2
3
4
5
6
7
8
class StorageMigratorWorker
  include ApplicationWorker

  def perform(start, finish)
    migrator = Gitlab::HashedStorage::Migrator.new
    migrator.bulk_migrate(start, finish)
  end
end