diff options
Diffstat (limited to 'ryu/services/protocols/bgp/info_base/ipv4.py')
-rw-r--r-- | ryu/services/protocols/bgp/info_base/ipv4.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ryu/services/protocols/bgp/info_base/ipv4.py b/ryu/services/protocols/bgp/info_base/ipv4.py index 13d7f62d..cf18c237 100644 --- a/ryu/services/protocols/bgp/info_base/ipv4.py +++ b/ryu/services/protocols/bgp/info_base/ipv4.py @@ -39,11 +39,11 @@ class IPv4Dest(Destination, NonVrfPathProcessingMixin): def _best_path_lost(self): old_best_path = self._best_path NonVrfPathProcessingMixin._best_path_lost(self) - self._core_service._signal_bus.best_path_changed(old_best_path) + self._core_service._signal_bus.best_path_changed(old_best_path, True) def _new_best_path(self, best_path): NonVrfPathProcessingMixin._new_best_path(self, best_path) - self._core_service._signal_bus.best_path_changed(best_path) + self._core_service._signal_bus.best_path_changed(best_path, False) class Ipv4Table(Table): |