vRouter should only process configured ports.
A missing part of #7558 Change-Id: I0efa34eb5d76b7c1c459f3141c061763d95248dd
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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; | ... | ... |
-
Please register or login to post a comment