class ActiveSupport::Notifications::Fanout

def publish(name, *args)

def publish(name, *args)
  iterate_guarding_exceptions(listeners_for(name)) { |s| s.publish(name, *args) }
end