Skip to content
Snippets Groups Projects
Commit 39860601 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov Committed by Neda Moeini
Browse files

remove tt_number from `add_all_pe_to_p_dry`

tt_number is not needed in the `dry` run anyway, and is not supplied
from the `validate_router` workflow.
parent 34166751
No related branches found
No related tags found
1 merge request!139Feature/add validation workflows
...@@ -124,13 +124,12 @@ def prompt_sharepoint_checklist_url(checklist_url: str) -> FormGenerator: ...@@ -124,13 +124,12 @@ def prompt_sharepoint_checklist_url(checklist_url: str) -> FormGenerator:
@step("[DRY RUN] Add all PE routers to P router iBGP table") @step("[DRY RUN] Add all PE routers to P router iBGP table")
def add_all_pe_to_p_dry(subscription: dict[str, Any], callback_route: str, tt_number: str, process_id: UUIDstr) -> None: def add_all_pe_to_p_dry(subscription: dict[str, Any], callback_route: str, process_id: UUIDstr) -> None:
"""Perform a dry run of adding the list of all PE routers to the new P router.""" """Perform a dry run of adding the list of all PE routers to the new P router."""
extra_vars = { extra_vars = {
"dry_run": True, "dry_run": True,
"subscription": subscription, "subscription": subscription,
"pe_router_list": subscriptions.get_active_pe_router_dict(), "pe_router_list": subscriptions.get_active_pe_router_dict(),
"commit_comment": f"GSO_PROCESS_ID: {process_id} - TT_NUMBER: {tt_number} - Update iBGP mesh",
"verb": "add_pe_to_p", "verb": "add_pe_to_p",
} }
......
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