debian-mirror-gitlab/lib/gitlab/background_migration/delete_conflicting_redirect_routes_range.rb
2018-03-17 18:26:18 +05:30

14 lines
325 B
Ruby

# 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