1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Feature #1739: Do not update poll info for VMs that should not be in the reported host

This commit is contained in:
Carlos Martín 2013-02-12 18:11:54 +01:00
parent 89f2cdac22
commit ad44a97905

View File

@ -168,14 +168,16 @@ void InformationManagerDriver::protocol(
if (rc == 0)
{
if (vm_ids.erase(vmid) != 1)
if (vm_ids.erase(vmid) == 1)
{
monitor_str = vatt->vector_value("POLL");
VirtualMachineManagerDriver::process_poll(vmid, monitor_str);
}
else
{
// TODO: This VM shoulnd't be running on this host
}
monitor_str = vatt->vector_value("POLL");
VirtualMachineManagerDriver::process_poll(vmid, monitor_str);
}
else
{