2018-12-23 12:14:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|