Skip to content
Snippets Groups Projects
Commit 452ef15f authored by Neda Moeini's avatar Neda Moeini
Browse files

Fixed router_role parameter name.

parent e22a5e43
No related branches found
No related tags found
No related merge requests found
Pipeline #87965 failed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment