Merge pull request #552 from mogotest/fix_zerigo_host_update

Fixed an issue whereby saving an existing record in Zerigo would nil out its value.
This commit is contained in:
Wesley Beary 2011-10-09 08:54:21 -07:00
commit d614c12d69
1 changed files with 1 additions and 1 deletions

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)