aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-07-18 15:37:23 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-07-18 15:37:23 -0700
commit2cbef6996c41c785a626291ce29b934797359fd2 (patch)
treedeaa204cee54c8f1d9400d1b3753d6d8cae8cb10 /activesupport/lib/active_support/notifications.rb
parent387036609268c4cf68401a1333715f2ee4aecffc (diff)
downloadrails-2cbef6996c41c785a626291ce29b934797359fd2.tar.gz
rails-2cbef6996c41c785a626291ce29b934797359fd2.tar.bz2
rails-2cbef6996c41c785a626291ce29b934797359fd2.zip
bind method is not needed, so goodbye! <3 <3 <3
Diffstat (limited to 'activesupport/lib/active_support/notifications.rb')
-rw-r--r--activesupport/lib/active_support/notifications.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb
index 1444fc1609..bb5f497c83 100644
--- a/activesupport/lib/active_support/notifications.rb
+++ b/activesupport/lib/active_support/notifications.rb
@@ -65,7 +65,7 @@ module ActiveSupport
end
def subscribe(pattern = nil, &block)
- @queue.bind(pattern).subscribe(&block)
+ @queue.subscribe(pattern, &block)
end
def unsubscribe(subscriber)