mirror of https://github.com/apache/cloudstack.git
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:
parent
fd831ff2ca
commit
749c77ae16
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue