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

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

module Gitlab
  module BackgroundMigration
    class PopulateTestReportsIssueId
      def perform(start_id, stop_id)
        # NO OP
      end
    end
  end
end

Gitlab::BackgroundMigration::PopulateTestReportsIssueId.prepend_mod