mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
15 lines
317 B
Ruby
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
|