# 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