gitlabhq/config/initializers/4_sidekiq.rb

23 lines
489 B
Ruby
Raw Normal View History

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