CLOUDSTACK-6478:Fix a typo in RemoteHostEndPoint.setId().

This commit is contained in:
Min Chen 2014-10-06 15:33:58 -07:00
parent 9e7fbae52f
commit aed36c2776
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}