mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-03 22:06:07 +00:00
10 lines
283 B
Ruby
10 lines
283 B
Ruby
redis_jobs_url = ENV.fetch("OFN_REDIS_JOBS_URL", "redis://localhost:6381/0")
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = { url: redis_jobs_url, network_timeout: 5 }
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = { url: redis_jobs_url, network_timeout: 5 }
|
|
end
|