mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6608:OVS distributed firewall: default ACL rule is not
getting applied when a tier in VPC is created. fix ensures, VpcRoutingPolicyUpdate is send when network rules are programmed when network tier in VPC is created
This commit is contained in:
parent
3515c39cac
commit
2a175a2b02
|
|
@ -491,8 +491,12 @@ public class NetworkACLManagerImpl extends ManagerBase implements NetworkACLMana
|
|||
foundProvider = true;
|
||||
s_logger.debug("Applying NetworkACL for network: " + network.getId() + " with Network ACL service provider");
|
||||
handled = element.applyNetworkACLs(network, rules);
|
||||
if (handled)
|
||||
if (handled) {
|
||||
// publish message on message bus, so that network elements implementing distributed routing
|
||||
// capability can act on the event
|
||||
_messageBus.publish(_name, "Network_ACL_Replaced", PublishScope.LOCAL, network);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!foundProvider) {
|
||||
s_logger.debug("Unable to find NetworkACL service provider for network: " + network.getId());
|
||||
|
|
|
|||
Loading…
Reference in New Issue