1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Fix hardware virtualization detection when an ethernet switch is running

Fix https://github.com/GNS3/gns3-gui/issues/1722
This commit is contained in:
Julien Duponchelle 2016-12-14 11:04:13 +01:00
parent 81a9b63dbc
commit 30f29d00c4
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
2 changed files with 2 additions and 0 deletions

View File

@ -107,5 +107,6 @@ class Bridge(Device):
yield from self._hypervisor.send('nio_bridge remove_nio "{name}" {nio}'.format(name=self._name, nio=nio))
self._nios.remove(nio)
@property
def hw_virtualization(self):
return False

View File

@ -109,5 +109,6 @@ class Device:
raise NotImplementedError
@property
def hw_virtualization(self):
return False