Updated Branches: refs/heads/master-6-17-stable 751bf4c54 -> 784b75680
Added more logging to the place where VR investigates whether the user vm is alive, by executing PingCommand Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/784b7568 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/784b7568 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/784b7568 Branch: refs/heads/master-6-17-stable Commit: 784b756809b2af456f8b7da0f376700d1c8cf95f Parents: 751bf4c Author: Alena Prokharchyk <alena.prokharc...@citrix.com> Authored: Wed Jun 19 10:53:15 2013 -0700 Committer: Alena Prokharchyk <alena.prokharc...@citrix.com> Committed: Wed Jun 19 10:54:24 2013 -0700 ---------------------------------------------------------------------- server/src/com/cloud/ha/UserVmDomRInvestigator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/784b7568/server/src/com/cloud/ha/UserVmDomRInvestigator.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/ha/UserVmDomRInvestigator.java b/server/src/com/cloud/ha/UserVmDomRInvestigator.java index f785d18..8b48c09 100644 --- a/server/src/com/cloud/ha/UserVmDomRInvestigator.java +++ b/server/src/com/cloud/ha/UserVmDomRInvestigator.java @@ -182,7 +182,8 @@ public class UserVmDomRInvestigator extends AbstractInvestigatorImpl { Answer pingTestAnswer = _agentMgr.easySend(hostId, new PingTestCommand(routerPrivateIp, privateIp)); if (pingTestAnswer!=null && pingTestAnswer.getResult()) { if (s_logger.isDebugEnabled()) { - s_logger.debug("user vm " + vm.getHostName() + " has been successfully pinged, returning that it is alive"); + s_logger.debug("user vm's " + vm.getHostName() + " ip address "+ privateIp + " has been successfully pinged from the Virtual Router " + + router.getHostName() + ", returning that vm is alive"); } return Boolean.TRUE; }