diff options
author | José Valim <jose.valim@gmail.com> | 2010-01-04 00:03:56 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-04 00:03:56 +0100 |
commit | 3990310a2bedd0dff5753e3e9b1282e686cff0cc (patch) | |
tree | e5f6d664d543651a02187c6ab8fc35171d19a6be /actionmailer | |
parent | f2d276fefdd620f18bb9fe3524ae9db6da70621d (diff) | |
download | rails-3990310a2bedd0dff5753e3e9b1282e686cff0cc.tar.gz rails-3990310a2bedd0dff5753e3e9b1282e686cff0cc.tar.bz2 rails-3990310a2bedd0dff5753e3e9b1282e686cff0cc.zip |
Use underscore in notification namespaces.
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index fb78a01437..c2ffa5a0e9 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -500,7 +500,7 @@ module ActionMailer #:nodoc: logger.debug "\n#{mail.encoded}" end - ActiveSupport::Notifications.instrument("actionmailer.deliver", :mail => mail) do + ActiveSupport::Notifications.instrument("action_mailer.deliver", :mail => mail) do begin self.delivery_method.perform_delivery(mail) if perform_deliveries rescue Exception => e # Net::SMTP errors or sendmail pipe errors |