summaryrefslogtreecommitdiff
path: root/app/workers/hashed_storage/rollbacker_worker.rb
blob: a4da84437870bdaa09edc4595580db9f38a4070b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module HashedStorage
  class RollbackerWorker
    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_rollback(start: start, finish: finish)
    end
  end
end