mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Merge branch '1.4' into 1.5
This commit is contained in:
commit
884bfa4724
@ -1,2 +1,2 @@
|
|||||||
SET PYTHONPATH=.
|
SET PYTHONPATH=%~dp0
|
||||||
python.exe gns3server/main.py --debug --local
|
python.exe %~dp0/gns3server/main.py --debug --local
|
||||||
|
@ -310,7 +310,7 @@ class QemuVM(BaseVM):
|
|||||||
:returns: QEMU hdb disk interface
|
:returns: QEMU hdb disk interface
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return self._hda_disk_interface
|
return self._hdb_disk_interface
|
||||||
|
|
||||||
@hdb_disk_interface.setter
|
@hdb_disk_interface.setter
|
||||||
def hdb_disk_interface(self, hdb_disk_interface):
|
def hdb_disk_interface(self, hdb_disk_interface):
|
||||||
@ -773,7 +773,10 @@ class QemuVM(BaseVM):
|
|||||||
priority = win32process.IDLE_PRIORITY_CLASS
|
priority = win32process.IDLE_PRIORITY_CLASS
|
||||||
else:
|
else:
|
||||||
priority = win32process.NORMAL_PRIORITY_CLASS
|
priority = win32process.NORMAL_PRIORITY_CLASS
|
||||||
win32process.SetPriorityClass(handle, priority)
|
try:
|
||||||
|
win32process.SetPriorityClass(handle, priority)
|
||||||
|
except win32process.error as e:
|
||||||
|
log.error('Could not change process priority for QEMU VM "{}": {}'.format(self._name, e))
|
||||||
else:
|
else:
|
||||||
if self._process_priority == "realtime":
|
if self._process_priority == "realtime":
|
||||||
priority = -20
|
priority = -20
|
||||||
|
Loading…
Reference in New Issue
Block a user