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

[terremark] only parse task result if there is one

This commit is contained in:
geemus (Wesley Beary) 2010-04-19 22:54:28 -07:00
parent b406ec113c
commit 3be3598c0d

View file

@ -18,7 +18,9 @@ module Fog
new_result = attributes.delete('Result')
super
@owner = connection.parse(new_owner)
@result = connection.parse(new_result)
if new_result
@result = connection.parse(new_result)
end
end
def ready?