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

delete_conflicting_redirect_routes_range.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21b626dde564296e4c61d20da2af1d2272fd294d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class DeleteConflictingRedirectRoutesRange
      def perform(start_id, end_id)
        # No-op.
        # See https://gitlab.com/gitlab-com/infrastructure/issues/3460#note_53223252
      end
    end
  end
end