From 9df5ac497ec2a3dbb52ae9f6d9b8c5c0cdf1c628 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 26 Mar 2018 01:24:41 -0400 Subject: [PATCH] bgpd: actually suppress coalesce-time Previous patches to suppress display of automatically calculated coalesce-time did not fully work because the flag indicating whether the value was automatically calculated was not set properly upon creation. Signed-off-by: Quentin Young --- bgpd/bgpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index c178727b54..d103584594 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -2863,6 +2863,7 @@ static struct bgp *bgp_create(as_t *as, const char *name, } bgp_lock(bgp); + bgp->heuristic_coalesce = true; bgp->inst_type = inst_type; bgp->vrf_id = (inst_type == BGP_INSTANCE_TYPE_DEFAULT) ? VRF_DEFAULT : VRF_UNKNOWN; -- 2.39.5