1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Fix creation of an VMware VM failed with invalid JSON. Fixes #2282.

This commit is contained in:
grossmj 2017-10-13 17:50:23 +08:00
parent 244a86bcbc
commit 02ad98664f

View File

@ -118,6 +118,10 @@ class Controller:
vms.append(vm)
for vm in vms:
# remove deprecated properties
for property in vm.copy():
if property in ["enable_remote_console", "use_ubridge"]:
del vm[property]
vm.setdefault("appliance_id", str(uuid.uuid4()))
appliance = Appliance(vm["appliance_id"], vm)
self._appliances[appliance.id] = appliance