mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-17 17:08:56 +00:00
bgpd: fixes bmp stats send-experimental configuration
Unconfiguring the send-experimental stats in BMP has no effect
on the current behavior.
Fixes this by swapping the configuration boolean.
Fixes: 7ba991cf96
("bgpd: add 'bmp stat send-experimental' command")
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
parent
281c891f16
commit
cd001c5ac0
@ -2496,7 +2496,7 @@ DEFPY(bmp_stats_send_experimental,
|
|||||||
{
|
{
|
||||||
VTY_DECLVAR_CONTEXT_SUB(bmp_targets, bt);
|
VTY_DECLVAR_CONTEXT_SUB(bmp_targets, bt);
|
||||||
|
|
||||||
bt->stats_send_experimental = !!no;
|
bt->stats_send_experimental = !no;
|
||||||
|
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user