Fixed error with asynchronous handling of VM remove and VM halting

It will hopefully fix QubesOS/qubes-issues#4163 .

references QubesOS/qubes-issues#4163
This commit is contained in:
Marta Marczykowska-Górecka 2018-08-05 23:48:10 +02:00
parent 146ce683f7
commit 20ee51f3d1
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B
2 changed files with 7 additions and 0 deletions

View File

@ -153,6 +153,10 @@ class VmRowInTable:
self.size_widget.update()
except exc.QubesPropertyAccessError:
pass
except exc.QubesDaemonNoResponseError:
# TODO: this will be fixed by a rewrite moving the event system to
# AdminAPI
pass
#force re-sorting
self.table.setSortingEnabled(True)

View File

@ -10,3 +10,6 @@ class QubesVMNotStartedError(BaseException):
class QubesPropertyAccessError(BaseException):
pass
class QubesDaemonNoResponseError(BaseException):
pass