1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fixed an issue whereby saving an existing record in Zerigo would nil out its value.

This commit is contained in:
Kevin Menard 2011-10-09 11:49:50 -04:00
parent 09b2266371
commit 9a619c07f3

View file

@ -48,7 +48,7 @@ module Fog
connection.create_host(@zone.id, type, value, options)
else
options[:host_type] = type
options[:data] = data
options[:data] = value
connection.update_host(identity, options)
end
merge_attributes(data.body)