Skip to content

Commit

Permalink
Merge pull request #10514 from FRRouting/mergify/bp/stable/8.0/pr-10510
Browse files Browse the repository at this point in the history
bgpd: Flush temporary attributes after route-map apply (backport #10510)
  • Loading branch information
ton31337 committed Feb 8, 2022
2 parents 3ef18fe + 02935b4 commit 32d4f38
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bgpd/bgp_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -2113,10 +2113,11 @@ bool subgroup_announce_check(struct bgp_dest *dest, struct bgp_path_info *pi,
if (ret == RMAP_DENYMATCH) {
if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
zlog_debug(
"%s [Update:SEND] %pFX is filtered by route-map",
peer->host, p);
"%s [Update:SEND] %pFX is filtered by route-map '%s'",
peer->host, p,
ROUTE_MAP_OUT_NAME(filter));

bgp_attr_flush(attr);
bgp_attr_flush(&dummy_attr);
return false;
}
}
Expand Down

0 comments on commit 32d4f38

Please sign in to comment.