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 {
HashMultimap.create();
interfaceService.getInterfaces()
.stream()
.filter(intf -> intf.ipAddressesList().isEmpty())
.forEach(intf -> confCPointsByVlan.put(intf.vlan(),
intf.connectPoint()));
return confCPointsByVlan;
......