aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications/fanout.rb
diff options
context:
space:
mode:
authorRafael França <rafael@franca.dev>2019-07-25 16:47:03 -0400
committerGitHub <noreply@github.com>2019-07-25 16:47:03 -0400
commitbd5edc29709116104345cf09c17f1db89428753e (patch)
tree63c8ba5a61b4f9a1a57435b3cd4aaeb92707a86b /activesupport/lib/active_support/notifications/fanout.rb
parentc9b7b9ff8adb3f01db0f9af90359030028a33b5b (diff)
parent218f0777d6abf1b2f933e44bd08f75f3d28c75ca (diff)
downloadrails-bd5edc29709116104345cf09c17f1db89428753e.tar.gz
rails-bd5edc29709116104345cf09c17f1db89428753e.tar.bz2
rails-bd5edc29709116104345cf09c17f1db89428753e.zip
Merge pull request #36318 from itsWill/fix_event_object_payload
Merge payload for EventObject subscribers
Diffstat (limited to 'activesupport/lib/active_support/notifications/fanout.rb')
-rw-r--r--activesupport/lib/active_support/notifications/fanout.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/notifications/fanout.rb b/activesupport/lib/active_support/notifications/fanout.rb
index aa602329ec..dda71b880e 100644
--- a/activesupport/lib/active_support/notifications/fanout.rb
+++ b/activesupport/lib/active_support/notifications/fanout.rb
@@ -218,6 +218,7 @@ module ActiveSupport
def finish(name, id, payload)
stack = Thread.current[:_event_stack]
event = stack.pop
+ event.payload = payload
event.finish!
@delegate.call event
end