mirror of https://github.com/apache/cloudstack.git
server bug fix: remove network details when network is removed (#5675)
This commit is contained in:
parent
2b54b587fc
commit
965316b842
|
|
@ -3116,6 +3116,8 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
|
|||
if (networkAccount != null) {
|
||||
_networkAccountDao.remove(networkAccount.getId());
|
||||
}
|
||||
|
||||
networkDetailsDao.removeDetails(networkFinal.getId());
|
||||
}
|
||||
|
||||
final NetworkOffering ntwkOff = _entityMgr.findById(NetworkOffering.class, networkFinal.getNetworkOfferingId());
|
||||
|
|
@ -4403,4 +4405,4 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
|
|||
GuestDomainSuffix, NetworkThrottlingRate, MinVRVersion,
|
||||
PromiscuousMode, MacAddressChanges, ForgedTransmits, MacLearning, RollingRestartEnabled};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue