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

ci_execution_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: 89c70e29dda1d0abc64de81ef903bef4cb19795f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Database
  module BatchedBackgroundMigration
    class CiExecutionWorker # rubocop:disable Scalability/IdempotentWorker
      include ExecutionWorker
    end
  end
end