From 099c514fcae1899723b4307dd307dd3366befbc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Mon, 17 Nov 2014 16:01:17 +0100 Subject: [PATCH] Bug #3353: Do not set last_pool time to 0 in lcm::monitor_poweron --- src/lcm/LifeCycleStates.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lcm/LifeCycleStates.cc b/src/lcm/LifeCycleStates.cc index eba86cf0f4..3f3d79a93c 100644 --- a/src/lcm/LifeCycleStates.cc +++ b/src/lcm/LifeCycleStates.cc @@ -1356,7 +1356,7 @@ void LifeCycleManager::monitor_poweron_action(int vid) vm->set_running_stime(the_time); - vm->set_last_poll(0); + vm->set_last_poll(the_time); vmpool->update_history(vm);