From 87c46ef443a44730cfdcab1ba00b25f60825e037 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Wed, 18 May 2022 19:44:00 +0000 Subject: [PATCH] Add route for e2nodeConfigUpdate Added route entry to e2t to handle e2nodeConfigUpdate ack and failure. Signed-off-by: subhash kumar singh Change-Id: I13a527683968483b76083242dc112bdc3ed93f47 --- Dockerfile | 1 + pkg/rpe/rpe.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6963a30..0b00518 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,7 @@ #FROM golang:1.12.1 as rtmgrbuild FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 as rtmgrbuild +RUN apt update && apt install ca-certificates libgnutls30 -y # Install RMr shared library ARG RMRVERSION=4.8.0 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb diff --git a/pkg/rpe/rpe.go b/pkg/rpe/rpe.go index 0ca7ca4..b763316 100644 --- a/pkg/rpe/rpe.go +++ b/pkg/rpe/rpe.go @@ -324,6 +324,8 @@ func (r *Rpe) generatePlatformRoutes(e2TermEp []rtmgr.Endpoint, subManEp *rtmgr. r.addRoute_rx_list("RIC_E2_SETUP_FAILURE", e2ManEp, e2TermEp, routeTable, -1, "") r.addRoute_rx_list("RIC_SERVICE_UPDATE_ACK", e2ManEp, e2TermEp, routeTable, -1, "") r.addRoute_rx_list("RIC_SERVICE_UPDATE_FAILURE", e2ManEp, e2TermEp, routeTable, -1, "") + r.addRoute_rx_list("RIC_E2NODE_CONFIG_UPDATE_ACK", e2ManEp, e2TermEp, routeTable, -1, "") + r.addRoute_rx_list("RIC_E2NODE_CONFIG_UPDATE_FAILURE", e2ManEp, e2TermEp, routeTable, -1, "") } } -- 2.16.6