From 1d12f828b526e4de1d764461f36b8d434277469a Mon Sep 17 00:00:00 2001 From: ns019t Date: Sun, 5 Apr 2020 14:17:57 +0300 Subject: [PATCH] RIC-193 - Setup from RAN: missing GLobalNbId fix Change-Id: I6149236e4e214be8aec7fcbbb47862cec10c8fb8 Signed-off-by: ns019t --- .../handlers/rmrmsghandlers/e2_setup_request_notification_handler.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/E2Manager/handlers/rmrmsghandlers/e2_setup_request_notification_handler.go b/E2Manager/handlers/rmrmsghandlers/e2_setup_request_notification_handler.go index 8ec18eb..405d30d 100644 --- a/E2Manager/handlers/rmrmsghandlers/e2_setup_request_notification_handler.go +++ b/E2Manager/handlers/rmrmsghandlers/e2_setup_request_notification_handler.go @@ -178,6 +178,10 @@ func (h E2SetupRequestNotificationHandler) buildNodebInfo(ranName string, e2tAdd RanName: ranName, NodeType: entities.Node_GNB, Configuration: &entities.NodebInfo_Gnb{Gnb: &entities.Gnb{}}, + GlobalNbId: &entities.GlobalNbId{ + PlmnId: request.GetPlmnId(), + NbId: request.GetNbId(), + }, } nodebInfo.GetGnb().RanFunctions, err = request.GetExtractRanFunctionsList() return nodebInfo, err -- 2.16.6