mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
1c8eef7dbd
clean up initializers so they are ordered properly
7 lines
213 B
Ruby
7 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
|