diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-06-20 08:03:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-20 08:03:42 +0300 |
| commit | 994792bace81c43a010eb762fa5ee70b5e077df2 (patch) | |
| tree | 443f82080c1901e787a1dfc1433e6b279b14b9c0 | |
| parent | 64112ed9e65eacd9a706d59fd1345ae64ee6c4a4 (diff) | |
| parent | b47a92e2e51595f820609e4d909f2b0abb9d6309 (diff) | |
Merge pull request #16234 from chiragshah6/fdev2
bgpd: backpressure - fix evpn route sync to zebra
| -rw-r--r-- | bgpd/bgp_zebra.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bgpd/bgp_zebra.c b/bgpd/bgp_zebra.c index 4d18078a43..73543f9fb4 100644 --- a/bgpd/bgp_zebra.c +++ b/bgpd/bgp_zebra.c @@ -1794,6 +1794,8 @@ static void bgp_handle_route_announcements_to_zebra(struct event *e) bool install; while (count < ZEBRA_ANNOUNCEMENTS_LIMIT) { + is_evpn = false; + dest = zebra_announce_pop(&bm->zebra_announce_head); if (!dest) |
