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

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

# Concern for setting Sidekiq settings for the various GitLab ObjectStorage workers.
module ObjectStorageQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :object_storage
  end
end