Charles Chan

vRouter should only process configured ports.

A missing part of #7558

Change-Id: I0efa34eb5d76b7c1c459f3141c061763d95248dd
...@@ -422,7 +422,7 @@ public class SingleSwitchFibInstaller { ...@@ -422,7 +422,7 @@ public class SingleSwitchFibInstaller {
422 if (deviceService.isAvailable(event.subject().id())) { 422 if (deviceService.isAvailable(event.subject().id())) {
423 log.info("Device connected {}", event.subject().id()); 423 log.info("Device connected {}", event.subject().id());
424 if (event.subject().id().equals(deviceId)) { 424 if (event.subject().id().equals(deviceId)) {
425 - processIntfFilters(true, interfaceService.getInterfaces()); 425 + updateDevice();
426 } 426 }
427 } 427 }
428 break; 428 break;
......