mirror of https://github.com/apache/cloudstack.git
Add missing break to applyRules in FirewallManager
Otherwise it would falling through PortForwarding rule. Seems like a typo after network refactor.
This commit is contained in:
parent
2776ad14c8
commit
15e466c56d
|
|
@ -545,6 +545,7 @@ public class FirewallManagerImpl extends ManagerBase implements FirewallService,
|
|||
if (handled)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case PortForwarding:
|
||||
for (PortForwardingServiceProvider element: _pfElements) {
|
||||
Network.Provider provider = element.getProvider();
|
||||
|
|
|
|||
Loading…
Reference in New Issue