Open
Description
I have a piece of code:
vapp.hyperv = new virt.Hypervisor(vapp.hyperv_string)
vapp.hyperv.connectAsync()
.then(() =>
vapp.domain = vapp.hyperv.lookupDomainByNameAsync(name)
)
.then((domain) => {
vapp.domain = domain
vapp.ev_lifecycle = domain.registerEvent(
{evtype:virt.VIR_DOMAIN_EVENT_ID_LIFECYCLE},
function (hyp, dom, data) {
console.log(hyp, dom, data)
})
return vapp.domain.getInfoAsync()
})
...
After running the above I get the following error:
libvirt: error : internal error: could not initialize domain event timer
Why is it so?
Metadata
Assignees
Labels
No labels
Activity