debian-mirror-gitlab/app/workers/hashed_storage/migrator_worker.rb
2019-03-02 22:35:43 +05:30

17 lines
407 B
Ruby

# frozen_string_literal: true
module HashedStorage
class MigratorWorker
include ApplicationWorker
queue_namespace :hashed_storage
# @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