From b8e166894b1d41ef417c89836a336590d93532f9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 6 May 2017 13:05:03 +0200 Subject: Fix Scheduler::SubscriptionsScheduler (#2834) * Fix Scheduler::SubscriptionsScheduler, add worker test for it * Change production log level of Sidekiq to "warn" instead of "info" --- config/environments/production.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'config') diff --git a/config/environments/production.rb b/config/environments/production.rb index 3cbf5f899..2c13707c2 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -87,6 +87,7 @@ Rails.application.configure do config.to_prepare do StatsD.backend = StatsD::Instrument::Backends::NullBackend.new if ENV['STATSD_ADDR'].blank? + Sidekiq::Logging.logger.level = Logger::WARN end config.action_dispatch.default_headers = { -- cgit