Repository: cloudstack Updated Branches: refs/heads/master 9e7fbae52 -> aed36c277
CLOUDSTACK-6478:Fix a typo in RemoteHostEndPoint.setId(). Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/aed36c27 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/aed36c27 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/aed36c27 Branch: refs/heads/master Commit: aed36c2776500976b7e97ad0afcf132044d96b1c Parents: 9e7fbae Author: Min Chen <[email protected]> Authored: Mon Oct 6 15:33:58 2014 -0700 Committer: Min Chen <[email protected]> Committed: Mon Oct 6 15:33:58 2014 -0700 ---------------------------------------------------------------------- .../src/org/apache/cloudstack/storage/RemoteHostEndPoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/aed36c27/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java ---------------------------------------------------------------------- diff --git a/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java b/engine/storage/src/org/apache/cloudstack/storage/RemoteHostEndPoint.java index c54430f..1f59cc6 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); }
