From e2ae478def300aa85b82e9ac0700479b1c3915a0 Mon Sep 17 00:00:00 2001
From: hajipour <shajipour@cttc.es>
Date: Sun, 12 Jan 2025 10:39:39 +0100
Subject: [PATCH] debug: incorrect src_output_bw value assignment resolved

---
 .../service/service_handlers/l3nm_ietfl3vpn/ConfigRules.py      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/service/service/service_handlers/l3nm_ietfl3vpn/ConfigRules.py b/src/service/service/service_handlers/l3nm_ietfl3vpn/ConfigRules.py
index 7649f166e..e2ad446ce 100644
--- a/src/service/service/service_handlers/l3nm_ietfl3vpn/ConfigRules.py
+++ b/src/service/service/service_handlers/l3nm_ietfl3vpn/ConfigRules.py
@@ -51,7 +51,7 @@ def setup_config_rules(
     src_ce_pe_network_prefix: int = json_settings["src_ce_pe_network_prefix"]
     src_mtu: int = json_settings["src_mtu"]
     src_input_bw: int = json_settings["src_input_bw"]
-    src_output_bw: int = json_settings["src_input_bw"]
+    src_output_bw: int = json_settings["src_output_bw"]
     src_qos_profile_id = "qos-realtime"
     src_qos_profile_direction = "ietf-l3vpn-svc:both"
     src_qos_profile_latency: int = json_settings["src_qos_profile_latency"]
-- 
GitLab