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

ci_database_worker.rb « batched_background_migration « database « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98ec6f98123d91e4a1c504408903ea71856c4124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
module Database
  module BatchedBackgroundMigration
    class CiDatabaseWorker # rubocop:disable Scalability/IdempotentWorker
      include SingleDatabaseWorker

      def self.tracking_database
        @tracking_database ||= Gitlab::Database::CI_DATABASE_NAME
      end
    end
  end
end