mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-19 15:53:47 +00:00
Hyper-V with nested virtualization is only supported on Windows 10 Anniversary Update or later.
This commit is contained in:
@ -744,8 +744,10 @@ class Project:
|
||||
os.remove(snapshot.path)
|
||||
|
||||
async def close(self, ignore_notification=False):
|
||||
if self._status == "closed" or self._loading:
|
||||
log.debug("Closing project '{}' ignored because it is already closed or being loaded".format(self.name))
|
||||
if self._status == "closed":
|
||||
return
|
||||
if self._loading:
|
||||
log.warning("Closing project '{}' ignored because it is being loaded".format(self.name))
|
||||
return
|
||||
await self.stop_all()
|
||||
for compute in list(self._project_created_on_compute):
|
||||
|
Reference in New Issue
Block a user