diff options
author | José Valim <jose.valim@gmail.com> | 2009-10-15 18:51:51 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2009-10-15 18:51:51 -0300 |
commit | 2d7abe245e7a2b1717e48ef550e4083318fd7ec2 (patch) | |
tree | 0de135e1a3c5dadb3f6e1c5457832e6ef81bb834 /activerecord/lib | |
parent | 5988b87c30eb0ce50c235187f5dfcfcfb98da01b (diff) | |
download | rails-2d7abe245e7a2b1717e48ef550e4083318fd7ec2.tar.gz rails-2d7abe245e7a2b1717e48ef550e4083318fd7ec2.tar.bz2 rails-2d7abe245e7a2b1717e48ef550e4083318fd7ec2.zip |
Renamed Orchestra to Notifications once again [#3321 state:resolved]
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/connection_adapters/abstract_adapter.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/notifications.rb (renamed from activerecord/lib/active_record/instrument.rb) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb index b411fe7526..8fae26b790 100755 --- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb @@ -200,7 +200,7 @@ module ActiveRecord protected def log(sql, name, &block) - ActiveSupport::Orchestra.instrument(:sql, :sql => sql, :name => name, &block) + ActiveSupport::Notifications.instrument(:sql, :sql => sql, :name => name, &block) rescue Exception => e # Log message and raise exception. # Set last_verification to 0, so that connection gets verified diff --git a/activerecord/lib/active_record/instrument.rb b/activerecord/lib/active_record/notifications.rb index 06d3e40080..a5ce7ac524 100644 --- a/activerecord/lib/active_record/instrument.rb +++ b/activerecord/lib/active_record/notifications.rb @@ -1,5 +1,5 @@ -require 'active_support/orchestra' +require 'active_support/notifications' -ActiveSupport::Orchestra.subscribe("sql") do |event| +ActiveSupport::Notifications.subscribe("sql") do |event| ActiveRecord::Base.connection.log_info(event.payload[:sql], event.payload[:name], event.duration) end |