13 lines
222 B
Ruby
13 lines
222 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
##
|
||
|
# Concern for setting Sidekiq settings for the various ObjectPool queues
|
||
|
#
|
||
|
module ObjectPoolQueue
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
queue_namespace :object_pool
|
||
|
end
|
||
|
end
|