Fixed issue in setting vm ip,mac in vm_instance table

This issue is not seen in 4.2, It is observed only in 4.3.
This commit is contained in:
Jayapal 2013-12-26 16:36:16 +05:30
parent fd831ff2ca
commit 749c77ae16
1 changed files with 1 additions and 0 deletions

View File

@ -3248,6 +3248,7 @@ public class UserVmManagerImpl extends ManagerBase implements UserVmManager, Vir
|| network.getTrafficType() == TrafficType.Public) {
userVm.setPrivateIpAddress(nic.getIp4Address());
userVm.setPrivateMacAddress(nic.getMacAddress());
_vmDao.update(userVm.getId(), userVm);
}
}