mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 05:13:01 +00:00
Use RAILS_LOG_LEVEL to set log level of Sidekiq, too (#7079)
Fix #3565 (oops)
This commit is contained in:
parent
8f800ad691
commit
49bbef1202
|
@ -4,7 +4,7 @@ namespace = ENV.fetch('REDIS_NAMESPACE') { nil }
|
||||||
redis_params = { url: ENV['REDIS_URL'] }
|
redis_params = { url: ENV['REDIS_URL'] }
|
||||||
|
|
||||||
if namespace
|
if namespace
|
||||||
redis_params [:namespace] = namespace
|
redis_params[:namespace] = namespace
|
||||||
end
|
end
|
||||||
|
|
||||||
Sidekiq.configure_server do |config|
|
Sidekiq.configure_server do |config|
|
||||||
|
@ -18,3 +18,5 @@ end
|
||||||
Sidekiq.configure_client do |config|
|
Sidekiq.configure_client do |config|
|
||||||
config.redis = redis_params
|
config.redis = redis_params
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Sidekiq::Logging.logger.level = ::Logger::const_get(ENV.fetch('RAILS_LOG_LEVEL', 'info').upcase.to_s)
|
||||||
|
|
Loading…
Reference in a new issue