1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-12 17:10:55 +00:00

Do not stop saving IOS router configs when there is an exception while a project is committed.

This commit is contained in:
grossmj 2015-06-08 11:28:48 -06:00
parent a1bc815f63
commit 9f1705a4f1

View File

@ -210,7 +210,11 @@ class Dynamips(BaseManager):
# save the configs when the project is committed
for vm in self._vms.copy().values():
if vm.project.id == project.id:
yield from vm.save_configs()
try:
yield from vm.save_configs()
except DynamipsError as e:
log.warning(e)
continue
@property
def dynamips_path(self):