From 441376c7543e6db9d26ca7b7221ce107961aaa20 Mon Sep 17 00:00:00 2001 From: rahushen Date: Mon, 7 Aug 2017 21:08:46 -0400 Subject: [PATCH] Fix #26024: suppress_fib_pending imdepotence for nxos_bgp (#27862) --- lib/ansible/modules/network/nxos/nxos_bgp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/nxos/nxos_bgp.py b/lib/ansible/modules/network/nxos/nxos_bgp.py index 8f74b621ba..3ea66095e6 100644 --- a/lib/ansible/modules/network/nxos/nxos_bgp.py +++ b/lib/ansible/modules/network/nxos/nxos_bgp.py @@ -460,7 +460,7 @@ def get_value(arg, config): def get_existing(module, args, warnings): existing = {} - netcfg = CustomNetworkConfig(indent=2, contents=get_config(module)) + netcfg = CustomNetworkConfig(indent=2, contents=get_config(module, flags=['bgp all'])) asn_re = re.compile(r'.*router\sbgp\s(?P\d+).*', re.S) asn_match = asn_re.match(str(netcfg))