2012-09-22 11:23:12 -04:00
|
|
|
# Custom Redis configuration
|
2012-11-20 11:57:45 -05:00
|
|
|
config_file = Rails.root.join('config', 'resque.yml')
|
2012-09-22 11:23:12 -04:00
|
|
|
|
2013-01-09 00:14:05 -05:00
|
|
|
resque_url = if File.exists?(config_file)
|
|
|
|
YAML.load_file(config_file)[Rails.env]
|
|
|
|
else
|
2013-03-06 16:06:12 -05:00
|
|
|
"redis://localhost:6379"
|
2013-01-09 00:14:05 -05:00
|
|
|
end
|
2012-09-22 11:23:12 -04:00
|
|
|
|
2013-01-09 00:14:05 -05:00
|
|
|
Sidekiq.configure_server do |config|
|
|
|
|
config.redis = {
|
2013-03-06 16:06:12 -05:00
|
|
|
url: resque_url,
|
2013-01-09 00:14:05 -05:00
|
|
|
namespace: 'resque:gitlab'
|
|
|
|
}
|
2014-07-03 10:23:41 -04:00
|
|
|
|
|
|
|
config.server_middleware do |chain|
|
2014-12-01 12:58:37 -05:00
|
|
|
chain.add Gitlab::SidekiqMiddleware::ArgumentsLogger if ENV['SIDEKIQ_LOG_ARGUMENTS']
|
2014-12-08 07:39:25 -05:00
|
|
|
chain.add Gitlab::SidekiqMiddleware::MemoryKiller if ENV['SIDEKIQ_MEMORY_KILLER_MAX_RSS']
|
2014-07-03 10:23:41 -04:00
|
|
|
end
|
2012-09-22 11:23:12 -04:00
|
|
|
end
|
|
|
|
|
2013-01-09 00:14:05 -05:00
|
|
|
Sidekiq.configure_client do |config|
|
|
|
|
config.redis = {
|
2013-03-06 16:06:12 -05:00
|
|
|
url: resque_url,
|
2013-01-09 00:14:05 -05:00
|
|
|
namespace: 'resque:gitlab'
|
|
|
|
}
|
|
|
|
end
|