summaryrefslogtreecommitdiff
path: root/app/workers/projects/schedule_bulk_repository_shard_moves_worker.rb
blob: d7f207f45e8c4fa2c36d29193796196649b7f4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Projects
  class ScheduleBulkRepositoryShardMovesWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3

    idempotent!
    feature_category :gitaly
    urgency :throttled

    def perform(source_storage_name, destination_storage_name = nil)
      Projects::ScheduleBulkRepositoryShardMovesService.new.execute(source_storage_name, destination_storage_name)
    end
  end
end