debian-mirror-gitlab/app/workers/concerns/object_storage_queue.rb
2018-11-08 19:23:39 +05:30

11 lines
235 B
Ruby

# 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