Skip to content

Commit

Permalink
Merge pull request #16026 from FRRouting/mergify/bp/stable/9.1/pr-16020
Browse files Browse the repository at this point in the history
bgpd: fix dynamic peer graceful restart race condition (backport #16020)
  • Loading branch information
donaldsharp committed May 17, 2024
2 parents 995e159 + 0b091e7 commit c5feadf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ bgp_connect_fail(struct peer_connection *connection)
{
struct peer *peer = connection->peer;

if (peer_dynamic_neighbor(peer)) {
if (peer_dynamic_neighbor_no_nsf(peer)) {
if (bgp_debug_neighbor_events(peer))
zlog_debug("%s (dynamic neighbor) deleted (%s)",
peer->host, __func__);
Expand Down

0 comments on commit c5feadf

Please sign in to comment.