class ActiveSupport::Notifications::Fanout

def publish_event(event)

def publish_event(event)
  iterate_guarding_exceptions(listeners_for(event.name)) { |s| s.publish_event(event) }
end