Luca Prete
Committed by Gerrit Code Review

Path to VPLS to don't consider interfaces that have IPs configured.

Change-Id: I540a21a3dcd10446302198952a90e45ade6bbc17
...@@ -136,6 +136,8 @@ public class Vpls { ...@@ -136,6 +136,8 @@ public class Vpls {
136 HashMultimap.create(); 136 HashMultimap.create();
137 137
138 interfaceService.getInterfaces() 138 interfaceService.getInterfaces()
139 + .stream()
140 + .filter(intf -> intf.ipAddressesList().isEmpty())
139 .forEach(intf -> confCPointsByVlan.put(intf.vlan(), 141 .forEach(intf -> confCPointsByVlan.put(intf.vlan(),
140 intf.connectPoint())); 142 intf.connectPoint()));
141 return confCPointsByVlan; 143 return confCPointsByVlan;
......