about summary refs log tree commit diff
path: root/config/environments/production.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-19 09:37:07 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-19 09:37:07 +0100
commitf051c2e8131616018486cfb9f4a80a120ca71f6e (patch)
treeb9730f9b3c667c82d66a6cf2dba63cba3fc53361 /config/environments/production.rb
parent8b9206f7d9565ad8b9026e5cc5e085e28ab0117a (diff)
Fix statsd null backend not being initialized properly
Diffstat (limited to 'config/environments/production.rb')
-rw-r--r--config/environments/production.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 30170e810..1572eaf6c 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -106,6 +106,6 @@ Rails.application.configure do
   config.active_record.logger = nil
 
   config.to_prepare do
-    StatsD.backend = StatsD::Instrument::Backends::NullBackend if ENV['STATSD_ADDR'].blank?
+    StatsD.backend = StatsD::Instrument::Backends::NullBackend.new if ENV['STATSD_ADDR'].blank?
   end
 end