debian-mirror-gitlab/app/workers/hashed_storage/migrator_worker.rb
2020-04-08 14:13:33 +05:30

18 lines
499 B
Ruby

# frozen_string_literal: true
module HashedStorage
class MigratorWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
queue_namespace :hashed_storage
feature_category :source_code_management
# @param [Integer] start initial ID of the batch
# @param [Integer] finish last ID of the batch
def perform(start, finish)
migrator = Gitlab::HashedStorage::Migrator.new
migrator.bulk_migrate(start: start, finish: finish)
end
end
end