2018-06-27 03:31:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-21 16:09:53 -05: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
|