From 1b6624907310329a7858ee3747e31fa4d4acdae7 Mon Sep 17 00:00:00 2001
From: gifrerenom <lluis.gifre@cttc.es>
Date: Mon, 17 Mar 2025 00:10:01 +0000
Subject: [PATCH] PathComp Component - Frontend:

- Updated default link capacity values
---
 .../frontend/service/algorithms/tools/ComposeRequest.py       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py b/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
index 0554084f8..3ca4dec3e 100644
--- a/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
+++ b/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
@@ -101,8 +101,8 @@ def compose_device(grpc_device : Device) -> Dict:
         link_port_direction = LinkPortDirection.BIDIRECTIONAL.value
         termination_direction = TerminationDirection.BIDIRECTIONAL.value
         termination_state = TerminationState.TERMINATED_BIDIRECTIONAL.value
-        total_potential_capacity = compose_capacity(200, CapacityUnit.MBPS.value)
-        available_capacity = compose_capacity(200, CapacityUnit.MBPS.value)
+        total_potential_capacity = compose_capacity(100000, CapacityUnit.GBPS.value)
+        available_capacity = compose_capacity(100000, CapacityUnit.GBPS.value)
         endpoint = compose_endpoint(
             endpoint_id, endpoint_type, link_port_direction, termination_direction,
             termination_state, total_potential_capacity, available_capacity)
-- 
GitLab