27 lines
717 B
Ruby
27 lines
717 B
Ruby
# Custom Redis configuration
|
|
config_file = Rails.root.join('config', 'resque.yml')
|
|
|
|
resque_url = if File.exists?(config_file)
|
|
YAML.load_file(config_file)[Rails.env]
|
|
else
|
|
"redis://localhost:6379"
|
|
end
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = {
|
|
url: resque_url,
|
|
namespace: 'resque:gitlab'
|
|
}
|
|
|
|
config.server_middleware do |chain|
|
|
chain.add Gitlab::SidekiqMiddleware::ArgumentsLogger if ENV['SIDEKIQ_LOG_ARGUMENTS']
|
|
chain.add Gitlab::SidekiqMiddleware::MemoryKiller if ENV['SIDEKIQ_MEMORY_KILLER_MAX_RSS']
|
|
end
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = {
|
|
url: resque_url,
|
|
namespace: 'resque:gitlab'
|
|
}
|
|
end
|