summaryrefslogtreecommitdiff
path: root/app/workers/concerns/object_storage_queue.rb
blob: a80f473a6d44cbec23bb40d21cce88cfd7d7ceff (plain)
1
2
3
4
5
6
7
8
# Concern for setting Sidekiq settings for the various GitLab ObjectStorage workers.
module ObjectStorageQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :object_storage
  end
end