67a61c80d1
Allow connection to Redis via unix socket, using unix:/var/run/redis/redis.sock for example. Default behaviour does not change, except that the full Redis URL must be configured, with redis:// for tcp or unix: for unix socket.
23 lines
489 B
Ruby
23 lines
489 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'
|
|
}
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = {
|
|
url: resque_url,
|
|
namespace: 'resque:gitlab'
|
|
}
|
|
end
|