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

Fixed the migration down revision after rebasing with develop and update the...

Fixed the migration down revision after rebasing with develop and update the code base to make the linter happy.
parent 2786b6b1
No related branches found
No related tags found
1 merge request!139Feature/add validation workflows
"""Add router validation task.
Revision ID: 6c986f219e3f
Revises: 1ec810b289c0
Revises: f6a38f9e9e18
Create Date: 2023-09-22 17:13:01.223133
"""
import sqlalchemy as sa
from alembic import op
# revision identifiers, used by Alembic.
revision = '6c986f219e3f'
down_revision = '1ec810b289c0'
down_revision = 'f6a38f9e9e18'
branch_labels = None
depends_on = None
......
""" Modify ISIS metric workflow description
Revision ID: fvd7mfcfbs1q
Revises:
Revises: 1ec810b289c0
Create Date: 2024-06-19 11:17:08.539591
"""
......
......@@ -124,7 +124,7 @@ def prompt_sharepoint_checklist_url(checklist_url: str) -> FormGenerator:
@step("[DRY RUN] Add all PE routers to P router iBGP group")
def add_all_pe_to_p_dry(subscription: dict[str, Any], callback_route: str, process_id: UUIDstr) -> None:
def add_all_pe_to_p_dry(subscription: dict[str, Any], callback_route: str) -> None:
"""Perform a dry run of adding the list of all PE routers to the new P router."""
extra_vars = {
"dry_run": True,
......
......@@ -12,7 +12,6 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form
from pydantic_forms.types import State, UUIDstr
from gso.products.product_types.router import Router
from gso.services import infoblox
from gso.services import infoblox, lso_client, subscriptions
from gso.services.librenms_client import LibreNMSClient
from gso.services.lso_client import anonymous_lso_interaction, execute_playbook
......@@ -53,7 +52,7 @@ def check_netbox_entry_exists(subscription: Router) -> None:
@step("Verify BGP configuration on P router")
def verify_p_ibgp(subscription: dict[str, Any], callback_route: str, process_id: UUIDstr) -> None:
def verify_p_ibgp(subscription: dict[str, Any], callback_route: str) -> None:
"""Perform a dry run of adding the list of all PE routers to the new P router."""
extra_vars = {
"dry_run": True,
......
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