X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/302fd06d4606867176d6fba8d14ae9a6fa7ec8af..07c1cd6b983d5138c1a217a716248b9a1010b9e3:/config/initializers/libxml.rb diff --git a/config/initializers/libxml.rb b/config/initializers/libxml.rb index a1870dbab..f783cda1e 100644 --- a/config/initializers/libxml.rb +++ b/config/initializers/libxml.rb @@ -1,7 +1,9 @@ require 'rubygems' -gem 'libxml-ruby', '>= 0.8.3' +gem 'libxml-ruby', '>= 1.0.0' require 'libxml' -LibXML::XML::Parser.register_error_handler do |message| +# This is required otherwise libxml writes out memory errors to +# the standard output and exits uncleanly +LibXML::XML::Error.set_handler do |message| raise message end