15 lines
		
	
	
		
			354 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			354 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Gitlab
 | 
						|
  module SidekiqVersioning
 | 
						|
    module Manager
 | 
						|
      def initialize(options = {})
 | 
						|
        options[:strict] = false
 | 
						|
        options[:queues] = SidekiqConfig.expand_queues(options[:queues])
 | 
						|
        Sidekiq.logger.info "Listening on queues #{options[:queues].uniq.sort}"
 | 
						|
        super
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |