From 83e737a237a39dcd6cfa2e5b9b1791dda60f06c4 Mon Sep 17 00:00:00 2001 From: anthony Date: Thu, 14 Oct 2010 12:33:18 -0700 Subject: [PATCH] bug 6567: seems like agentcache for other host is down, add more log status 6567: resolved fixed --- core/src/com/cloud/host/HostVO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/cloud/host/HostVO.java b/core/src/com/cloud/host/HostVO.java index c26f998e0fe..6aa92ea5752 100644 --- a/core/src/com/cloud/host/HostVO.java +++ b/core/src/com/cloud/host/HostVO.java @@ -622,7 +622,7 @@ public class HostVO implements Host { @Override public String toString() { - return new StringBuilder(type.toString()).append("-").append(Long.toString(id)).append("-").append(name).toString(); + return new StringBuilder(type.toString()).append("-").append(Long.toString(id)).append("-").append(name).append("-").append(privateIpAddress).toString(); } public void setHypervisorType(Hypervisor.Type hypervisorType) {