debian-mirror-gitlab/app/workers/snippets/schedule_bulk_repository_shard_moves_worker.rb
2021-04-17 20:07:23 +05:30

16 lines
396 B
Ruby

# frozen_string_literal: true
module Snippets
class ScheduleBulkRepositoryShardMovesWorker
include ApplicationWorker
idempotent!
feature_category :gitaly
urgency :throttled
def perform(source_storage_name, destination_storage_name = nil)
Snippets::ScheduleBulkRepositoryShardMovesService.new.execute(source_storage_name, destination_storage_name)
end
end
end