Fix hardware virtualization detection when an ethernet switch is running

Fix https://github.com/GNS3/gns3-gui/issues/1722
pull/862/head
Julien Duponchelle 8 years ago
parent 81a9b63dbc
commit 30f29d00c4
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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

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

Loading…
Cancel
Save