1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

Feature #4217: Fix bug in monitor

This commit is contained in:
Jaime Melis 2016-02-05 12:01:42 +01:00
parent 313eb34a7b
commit 37cc97f23d

View File

@ -114,6 +114,8 @@ class OneMarket
return if val.nil?
return if val.class == String && val.empty?
val.gsub!('"','\"') if val.class == String
str << "#{name}=\"#{val}\"\n"
end
@ -144,4 +146,3 @@ end
#TODO get marketplace URL from MARKETPLACE Templace for other markets
one_market = OneMarket.new
puts one_market.get_appliances()