Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remove_backfilled_job_artifacts_expire_at_batching_strategy.rb « batching_strategies « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49525479637fd0c330fed3a6011dead5565cf891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    module BatchingStrategies
      # Used to apply additional filters to the batching table, migrated to
      # use BatchedMigrationJob#filter_batch with https://gitlab.com/gitlab-org/gitlab/-/merge_requests/96478
      class RemoveBackfilledJobArtifactsExpireAtBatchingStrategy < PrimaryKeyBatchingStrategy
      end
    end
  end
end