diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-26 01:24:41 -0400 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-26 01:29:37 -0400 |
| commit | 9df5ac497ec2a3dbb52ae9f6d9b8c5c0cdf1c628 (patch) | |
| tree | 3a888bc4ab3cfbce26bcd450ca34e3dc07722f9f | |
| parent | fc9aa7acdc3eb3501aff2af5548defb52ae77733 (diff) | |
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 <qlyoung@cumulusnetworks.com>
| -rw-r--r-- | bgpd/bgpd.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
