Commit 6bc24749 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Service component - L3NM - NCE-FAN Service Handler:

- Fixed composition of qos-profile name
parent 97b1d9c6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -41,9 +41,10 @@ def setup_config_rules(service_name: str, json_settings: Dict) -> List[Dict]:
    app_id: str = f"app_{app_flow_id}"
    app_feature_id: str = f"feature_{app_flow_id}"
    app_flow_name: str = f"App_Flow_{app_flow_id}"
    qos_profile_name: str = f"AR_VR_Gaming_{app_flow_id}"

    app_flow_max_online_users: int = json_settings.get("app_flow_max_online_users", 1)
    app_flow_stas: str = json_settings.get("stas", "00:3D:E1:18:82:9E")
    qos_profile_name: str = json_settings.get("app_flow_qos_profile", "AR_VR_Gaming")
    app_flow_duration: int = json_settings.get("app_flow_duration", 9999)
    protocol: str = json_settings.get("protocol", "tcp")