1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Don't skip whitespace when using OX to parse xmlrpc

The defaults changed in OX 2.5.0 and caused new lines
to disappear.
This commit is contained in:
Javi Fontan 2017-07-05 18:18:52 +02:00
parent ebc165f70f
commit b79285437a

View File

@ -39,9 +39,11 @@ module OpenNebula
alias :start_element :startElement
def parse(str)
Ox.sax_parse(self, StringIO.new(str),
:symbolize => false,
:convert_special => true)
:convert_special => true,
:skip => false)
end
end
end