This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-03 23:18:13 +02:00
|
|
|
# frozen_string_literal: true
|
2016-03-25 02:50:48 +01:00
|
|
|
|
2017-05-07 19:42:32 +02:00
|
|
|
namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
|
|
|
|
redis_params = { url: ENV['REDIS_URL'] }
|
|
|
|
|
|
|
|
if namespace
|
|
|
|
redis_params [:namespace] = namespace
|
|
|
|
end
|
|
|
|
|
2016-03-25 02:50:48 +01:00
|
|
|
Sidekiq.configure_server do |config|
|
2017-05-07 19:42:32 +02:00
|
|
|
config.redis = redis_params
|
2016-03-25 02:50:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
2017-05-07 19:42:32 +02:00
|
|
|
config.redis = redis_params
|
2016-03-25 02:50:48 +01:00
|
|
|
end
|