From aed36c2776500976b7e97ad0afcf132044d96b1c Mon Sep 17 00:00:00 2001 From: Min Chen Date: Mon, 6 Oct 2014 15:33:58 -0700 Subject: [PATCH] CLOUDSTACK-6478:Fix a typo in RemoteHostEndPoint.setId(). --- .../src/org/apache/cloudstack/storage/RemoteHostEndPoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java b/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java index c54430fedbe..1f59cc6cc8a 100644 --- a/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java +++ b/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java @@ -107,7 +107,7 @@ public class RemoteHostEndPoint implements EndPoint { // used when HypervisorGuruManager choose a different host to send command private void setId(long id) { - HostVO host = _hostDao.findById(hostId); + HostVO host = _hostDao.findById(id); if (host != null) { configure(host); }