mirror of https://github.com/apache/cloudstack.git
Fix server-setup.xml processing
This commit is contained in:
parent
90066f1c12
commit
ac0760ecba
|
|
@ -365,7 +365,8 @@ public class PodZoneConfig {
|
|||
try {
|
||||
PreparedStatement stmt = txn.prepareAutoCloseStatement(insertTraficType);
|
||||
for (TrafficType traffic : TrafficType.values()) {
|
||||
if(traffic.equals(TrafficType.Control) || traffic.equals(TrafficType.Vpn)){
|
||||
if(traffic.equals(TrafficType.Control) || traffic.equals(TrafficType.Vpn) ||
|
||||
traffic.equals(TrafficType.None)){
|
||||
continue;
|
||||
}
|
||||
stmt.setLong(1, id);
|
||||
|
|
|
|||
Loading…
Reference in New Issue