From dcc65331921db2e880dccd9834d0f36bb70e85d2 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurbatov <ak@geant.org> Date: Mon, 14 Apr 2025 10:11:20 +0100 Subject: [PATCH] SDP function wording update --- gso/utils/workflow_steps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py index 50f754a96..0b6071fd9 100644 --- a/gso/utils/workflow_steps.py +++ b/gso/utils/workflow_steps.py @@ -307,13 +307,13 @@ def remove_pe_from_sdp_mesh_real(subscription: dict[str, Any], tt_number: str, p return _update_sdp_mesh(subscription, tt_number, process_id, dry_run=False, verb="remove_pe_from_sdp_mesh") -@step("[DRY RUN] Configure SDP on the PE to all other Nokia PEs") +@step("[DRY RUN] Configure SDP on the PE to all other PEs") def update_sdp_single_pe_dry(subscription: dict[str, Any], tt_number: str, process_id: UUIDstr) -> State: """Perform a dry run of configuring SDP on a new PE router to all other NOKIA PE routers.""" return _update_sdp_single_pe(subscription, tt_number, process_id, dry_run=True) -@step("[FOR REAL] Configure SDP on the PE to all other Nokia PEs") +@step("[FOR REAL] Configure SDP on the PE to all other PEs") def update_sdp_single_pe_real(subscription: dict[str, Any], tt_number: str, process_id: UUIDstr) -> State: """Configure SDP on a new PE router to all other NOKIA PE routers.""" return _update_sdp_single_pe(subscription, tt_number, process_id, dry_run=False) -- GitLab