From: zkoczka Date: Tue, 29 Oct 2019 10:09:26 +0000 (+0100) Subject: Fix ENDC_X2_SETUP related routes X-Git-Tag: 0.3.9~6 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=988d1da4f05b180cac103e59e8118e2fd9f1ddec;p=ric-plt%2Frtmgr.git Fix ENDC_X2_SETUP related routes Signed-off-by: zkoczka Change-Id: Ia14c4706f0bcff19e009907f2ddbceda3eb13386 --- diff --git a/RELNOTES b/RELNOTES index 4fc0f83..77dcc72 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,6 @@ +### v0.3.7 +* Fix routes for RIC_ENDC_X2_SETUP_REQ, RIC_ENDC_X2_SETUP_RESP and RIC_ENDC_X2_SETUP_FAILURE + ### v0.3.6 * Routing Manager is more resilient to missing components * Put in order the message types diff --git a/container-tag.yaml b/container-tag.yaml index bd068bd..18dcc3b 100644 --- a/container-tag.yaml +++ b/container-tag.yaml @@ -2,4 +2,4 @@ # By default this file is in the docker build directory, # but the location can configured in the JJB template. --- -tag: 0.3.6 +tag: 0.3.7 diff --git a/pkg/rpe/rpe.go b/pkg/rpe/rpe.go index ef04791..20cd4e9 100644 --- a/pkg/rpe/rpe.go +++ b/pkg/rpe/rpe.go @@ -158,8 +158,6 @@ func (r *Rpe) generatePlatformRoutes(e2TermEp *rtmgr.Endpoint, subManEp *rtmgr.E r.addRoute("RIC_X2_SETUP_FAILURE", e2ManEp, e2TermEp, routeTable, -1) r.addRoute("RIC_X2_RESET_RESP", e2ManEp, e2TermEp, routeTable, -1) r.addRoute("RIC_ENDC_X2_SETUP_REQ", e2ManEp, e2TermEp, routeTable, -1) - r.addRoute("RIC_ENDC_X2_SETUP_RESP", e2ManEp, e2TermEp, routeTable, -1) - r.addRoute("RIC_ENDC_X2_SETUP_FAILURE", e2ManEp, e2TermEp, routeTable, -1) r.addRoute("RIC_SCTP_CLEAR_ALL", e2ManEp, e2TermEp, routeTable, -1) //E2 Termination -> E2 Manager r.addRoute("E2_TERM_INIT", e2TermEp, e2ManEp, routeTable, -1) @@ -168,9 +166,8 @@ func (r *Rpe) generatePlatformRoutes(e2TermEp *rtmgr.Endpoint, subManEp *rtmgr.E r.addRoute("RIC_X2_RESET", e2TermEp, e2ManEp, routeTable, -1) r.addRoute("RIC_X2_RESOURCE_STATUS_RESPONSE", e2TermEp, e2ManEp, routeTable, -1) r.addRoute("RIC_X2_RESET_RESP", e2TermEp, e2ManEp, routeTable, -1) - r.addRoute("RIC_ENDC_X2_SETUP_REQ", e2ManEp, e2TermEp, routeTable, -1) - r.addRoute("RIC_ENDC_X2_SETUP_RESP", e2ManEp, e2TermEp, routeTable, -1) - r.addRoute("RIC_ENDC_X2_SETUP_FAILURE", e2ManEp, e2TermEp, routeTable, -1) + r.addRoute("RIC_ENDC_X2_SETUP_RESP", e2TermEp, e2ManEp, routeTable, -1) + r.addRoute("RIC_ENDC_X2_SETUP_FAILURE", e2TermEp, e2ManEp, routeTable, -1) r.addRoute("RIC_SCTP_CONNECTION_FAILURE", e2TermEp, e2ManEp, routeTable, -1) }