2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
# please require all dependencies below:
|
|
|
|
require_relative 'wrapper' unless defined?(::Gitlab::Redis::Wrapper)
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Redis
|
|
|
|
class Queues < ::Gitlab::Redis::Wrapper
|
|
|
|
SIDEKIQ_NAMESPACE = 'resque:gitlab'.freeze
|
|
|
|
MAILROOM_NAMESPACE = 'mail_room:gitlab'.freeze
|
|
|
|
DEFAULT_REDIS_QUEUES_URL = 'redis://localhost:6381'.freeze
|
|
|
|
REDIS_QUEUES_CONFIG_ENV_VAR_NAME = 'GITLAB_REDIS_QUEUES_CONFIG_FILE'.freeze
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def default_url
|
|
|
|
DEFAULT_REDIS_QUEUES_URL
|
|
|
|
end
|
|
|
|
|
|
|
|
def config_file_name
|
|
|
|
# if ENV set for this class, use it even if it points to a file does not exist
|
|
|
|
file_name = ENV[REDIS_QUEUES_CONFIG_ENV_VAR_NAME]
|
|
|
|
return file_name if file_name
|
|
|
|
|
|
|
|
# otherwise, if config files exists for this class, use it
|
|
|
|
file_name = config_file_path('redis.queues.yml')
|
|
|
|
return file_name if File.file?(file_name)
|
|
|
|
|
|
|
|
# this will force use of DEFAULT_REDIS_QUEUES_URL when config file is absent
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|