mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:32:26 +08:00
1c8eef7dbd
clean up initializers so they are ordered properly
8 lines
213 B
Ruby
8 lines
213 B
Ruby
Sidekiq.configure_server do |config|
|
|
config.redis = { :url => $redis.url, :namespace => 'sidekiq' }
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = { :url => $redis.url, :namespace => 'sidekiq' }
|
|
end
|