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

ci_database_worker.rb « background_migration « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 901d16681fdb3064501337a402cdbe05d1cb7837 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module BackgroundMigration
  class CiDatabaseWorker # rubocop:disable Scalability/IdempotentWorker
    include SingleDatabaseWorker

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