mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-17 06:48:18 +00:00
Catch exception if we can't change process priority on Windows
Fix #380
This commit is contained in:
@ -773,7 +773,10 @@ class QemuVM(BaseVM):
|
||||
priority = win32process.IDLE_PRIORITY_CLASS
|
||||
else:
|
||||
priority = win32process.NORMAL_PRIORITY_CLASS
|
||||
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:
|
||||
if self._process_priority == "realtime":
|
||||
priority = -20
|
||||
|
Reference in New Issue
Block a user