Skip to content
Snippets Groups Projects

Added more steps in router termination including:

Merged Neda Moeini requested to merge feature/NAT-578-update-ibgp-mesh-on-terminating-router into develop
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -263,8 +263,8 @@ def terminate_router() -> StepList:
run_config_steps = conditional(lambda state: state["remove_configuration"])
update_ibgp_mesh = conditional(lambda state: state["update_ibgp_mesh"])
router_is_nokia = conditional(lambda state: state["router_is_nokia"])
router_is_pe = conditional(lambda state: state["router_is_pe"] == "PE")
router_is_p = conditional(lambda state: state["router_is_p"] == "P")
router_is_pe = conditional(lambda state: state["router_role"] == "PE")
router_is_p = conditional(lambda state: state["router_role"] == "P")
return (
begin
Loading