summaryrefslogtreecommitdiff
path: root/src/conf_mode/protocols_bfd.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-07-23 19:34:07 +0200
committerChristian Poessinger <christian@poessinger.com>2021-07-23 19:34:43 +0200
commita55585a833a23e64adb666558b3d358523f6cb39 (patch)
tree8fd32e79bc139701415d39e9c3af7019d6fe2d9a /src/conf_mode/protocols_bfd.py
parent4791195ae206483f3de1e1b602feefe354834222 (diff)
downloadvyos-1x-a55585a833a23e64adb666558b3d358523f6cb39.tar.gz
vyos-1x-a55585a833a23e64adb666558b3d358523f6cb39.zip
frr: T2175: remove no longer required loop when removing routing protocols
Diffstat (limited to 'src/conf_mode/protocols_bfd.py')
-rwxr-xr-xsrc/conf_mode/protocols_bfd.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/conf_mode/protocols_bfd.py b/src/conf_mode/protocols_bfd.py
index dd70d6bab..348bae59f 100755
--- a/src/conf_mode/protocols_bfd.py
+++ b/src/conf_mode/protocols_bfd.py
@@ -102,12 +102,6 @@ def apply(bfd):
frr_cfg.add_before(r'(ip prefix-list .*|route-map .*|line vty)', bfd['new_frr_config'])
frr_cfg.commit_configuration()
- # If FRR config is blank, rerun the blank commit x times due to frr-reload
- # behavior/bug not properly clearing out on one commit.
- if bfd['new_frr_config'] == '':
- for a in range(5):
- frr_cfg.commit_configuration()
-
return None
if __name__ == '__main__':