From 9e803fc08bbfe53afd7f71f62d436c26ae50e29a Mon Sep 17 00:00:00 2001 From: Karel van Klink <karel.vanklink@geant.org> Date: Thu, 21 Mar 2024 15:35:49 +0000 Subject: [PATCH] Update error message --- gso/workflows/router/update_ibgp_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gso/workflows/router/update_ibgp_mesh.py b/gso/workflows/router/update_ibgp_mesh.py index a3b20576..abef7da4 100644 --- a/gso/workflows/router/update_ibgp_mesh.py +++ b/gso/workflows/router/update_ibgp_mesh.py @@ -40,7 +40,7 @@ def initial_input_form_generator(subscription_id: UUIDstr) -> FormGenerator: subscription_id, SubscriptionLifecycle.PROVISIONING ) + get_trunks_that_terminate_on_router(subscription_id, SubscriptionLifecycle.ACTIVE) if len(terminating_trunks) == 0: - msg = "Selected router does not terminate any active IP trunks." + msg = "Selected router does not terminate any available IP trunks." raise ValueError(msg) return values -- GitLab