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

B #2348: Error when creating a vnet from Sunstone using advanced mode (#2380)

(cherry picked from commit 3932c7d56de739237d1658279a4dbdc29bad76a9)
This commit is contained in:
Abel Coronado 2018-09-05 16:35:50 +02:00 committed by Tino Vazquez
parent 5a799f3a02
commit 04111f46de

View File

@ -27,9 +27,6 @@ module OpenNebulaJSON
end
cluster_id = parse_json(template_json, 'cluster_id')
if OpenNebula.is_error?(cluster_id)
return cluster_id
end
if vnet_hash['vnet_raw']
template = vnet_hash['vnet_raw']
@ -37,7 +34,9 @@ module OpenNebulaJSON
template = template_to_str(vnet_hash)
end
self.allocate(template, cluster_id.to_i)
if !OpenNebula.is_error?(cluster_id)
self.allocate(template, cluster_id.to_i)
end
end
def perform_action(template_json)