gitlab-org--gitlab-foss/app/workers/concerns/object_storage_queue.rb

9 lines
204 B
Ruby
Raw Normal View History

2018-02-21 21:09:53 +00:00
# Concern for setting Sidekiq settings for the various GitLab ObjectStorage workers.
module ObjectStorageQueue
extend ActiveSupport::Concern
included do
queue_namespace :object_storage
end
end