mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-7639: make cidrlist update when updateNetworkAclItem is called
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
fde2887476
commit
b2b9de7fa3
@ -90,6 +90,13 @@ public class NetworkACLItemDaoImpl extends GenericDaoBase<NetworkACLItemVO, Long
|
||||
return item;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean update(Long id, NetworkACLItemVO item) {
|
||||
boolean result = super.update(id, item);
|
||||
saveCidrs(item, item.getSourceCidrList());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setStateToAdd(NetworkACLItemVO rule) {
|
||||
SearchCriteria<NetworkACLItemVO> sc = AllFieldsSearch.create();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user