mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
Check for active domain in virDomainObjWait
virDomainObjWait is designed to be called in a loop. Make sure we break the loop in case the domain dies to avoid waiting for an event which will never happen. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
81f50cb92d
commit
5591ca502d
@ -2749,6 +2749,13 @@ virDomainObjWait(virDomainObjPtr vm)
|
||||
_("failed to wait for domain condition"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!virDomainObjIsActive(vm)) {
|
||||
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
||||
_("domain is not running"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user