22 lines
524 B
Ruby
22 lines
524 B
Ruby
# frozen_string_literal: true
|
|
|
|
# We need this require for MailRoom
|
|
require_relative 'wrapper' unless defined?(::Gitlab::Redis::Wrapper)
|
|
require 'active_support/core_ext/object/blank'
|
|
|
|
module Gitlab
|
|
module Redis
|
|
class Queues < ::Gitlab::Redis::Wrapper
|
|
SIDEKIQ_NAMESPACE = 'resque:gitlab'
|
|
MAILROOM_NAMESPACE = 'mail_room:gitlab'
|
|
|
|
private
|
|
|
|
def raw_config_hash
|
|
config = super
|
|
config[:url] = 'redis://localhost:6381' if config[:url].blank?
|
|
config
|
|
end
|
|
end
|
|
end
|
|
end
|