Skip to content
Snippets Groups Projects
Commit 95c486ed authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

corrected list of arguments

parent c2616719
No related branches found
No related tags found
No related merge requests found
Pipeline #85936 failed
...@@ -224,6 +224,7 @@ def calculate_old_side_data(subscription: Iptrunk, replace_index: int) -> State: ...@@ -224,6 +224,7 @@ def calculate_old_side_data(subscription: Iptrunk, replace_index: int) -> State:
def check_ip_trunk_optical_levels( def check_ip_trunk_optical_levels(
subscription: Iptrunk, subscription: Iptrunk,
callback_route: str, callback_route: str,
replace_index: int,
) -> State: ) -> State:
"""Check Optical levels on the trunk.""" """Check Optical levels on the trunk."""
extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "optical"} extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "optical"}
...@@ -407,6 +408,7 @@ def confirm_continue_move_fiber() -> FormGenerator: ...@@ -407,6 +408,7 @@ def confirm_continue_move_fiber() -> FormGenerator:
def check_ip_trunk_connectivity( def check_ip_trunk_connectivity(
subscription: Iptrunk, subscription: Iptrunk,
callback_route: str, callback_route: str,
replace_index: int,
) -> State: ) -> State:
"""Check successful connectivity across the new trunk.""" """Check successful connectivity across the new trunk."""
extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "ping"} extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "ping"}
...@@ -462,6 +464,7 @@ def deploy_new_isis( ...@@ -462,6 +464,7 @@ def deploy_new_isis(
def check_ip_trunk_isis( def check_ip_trunk_isis(
subscription: Iptrunk, subscription: Iptrunk,
callback_route: str, callback_route: str,
replace_index: int,
) -> State: ) -> State:
"""Run an Ansible playbook to confirm :term:`ISIS` adjacency.""" """Run an Ansible playbook to confirm :term:`ISIS` adjacency."""
extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "isis"} extra_vars = {"wfo_ip_trunk_json": json.loads(json_dumps(subscription)), "check": "isis"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment