Files
gitlab-foss/lib/gitlab/background_migration/backfill_zoekt_replicas.rb
2024-07-13 00:32:05 +00:00

15 lines
317 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# Assigns all zoekt indices to a replica
class BackfillZoektReplicas < BatchedMigrationJob
feature_category :global_search
def perform; end
end
end
end
Gitlab::BackgroundMigration::BackfillZoektReplicas.prepend_mod