diff options
-rw-r--r-- | ryu/services/protocols/bgp/info_base/ipv4.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ryu/services/protocols/bgp/info_base/ipv4.py b/ryu/services/protocols/bgp/info_base/ipv4.py index de0d4c77..13d7f62d 100644 --- a/ryu/services/protocols/bgp/info_base/ipv4.py +++ b/ryu/services/protocols/bgp/info_base/ipv4.py @@ -37,8 +37,9 @@ class IPv4Dest(Destination, NonVrfPathProcessingMixin): ROUTE_FAMILY = RF_IPv4_UC def _best_path_lost(self): + old_best_path = self._best_path NonVrfPathProcessingMixin._best_path_lost(self) - self._core_service._signal_bus.best_path_changed(self) + self._core_service._signal_bus.best_path_changed(old_best_path) def _new_best_path(self, best_path): NonVrfPathProcessingMixin._new_best_path(self, best_path) |