2012-09-22 17:23:12 +02:00
|
|
|
# Custom Redis configuration
|
2012-11-20 17:57:45 +01:00
|
|
|
config_file = Rails.root.join('config', 'resque.yml')
|
2012-09-22 17:23:12 +02:00
|
|
|
|
2013-01-09 06:14:05 +01:00
|
|
|
resque_url = if File.exists?(config_file)
|
|
|
|
YAML.load_file(config_file)[Rails.env]
|
|
|
|
else
|
|
|
|
"localhost:6379"
|
|
|
|
end
|
2012-09-22 17:23:12 +02:00
|
|
|
|
2013-01-09 06:14:05 +01:00
|
|
|
Sidekiq.configure_server do |config|
|
|
|
|
config.redis = {
|
|
|
|
url: "redis://#{resque_url}",
|
|
|
|
namespace: 'resque:gitlab'
|
|
|
|
}
|
2012-09-22 17:23:12 +02:00
|
|
|
end
|
|
|
|
|
2013-01-09 06:14:05 +01:00
|
|
|
Sidekiq.configure_client do |config|
|
|
|
|
config.redis = {
|
|
|
|
url: "redis://#{resque_url}",
|
|
|
|
namespace: 'resque:gitlab'
|
|
|
|
}
|
|
|
|
end
|