1
0

vm: stubdom_xid: use canonical method for checking VM state

Don't depend on xid==-1 for not running VM.
This breaks some tests, as xid can be a mock object (not comparable to
int).
Este cometimento está contido em:
Marek Marczykowski-Górecki 2017-05-13 01:03:04 +02:00
ascendente e598735c3b
cometimento 3c7d2289ce
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 063938BA42CFA724

Ver ficheiro

@ -535,7 +535,7 @@ class QubesVM(qubes.vm.mix.net.NetVMMixin, qubes.vm.BaseVM):
@qubes.stateless_property
def stubdom_xid(self):
if self.xid < 0:
if not self.is_running():
return -1
if self.app.vmm.xs is None: