From: ns019t Date: Sun, 5 Apr 2020 11:17:57 +0000 (+0300) Subject: RIC-193 - Setup from RAN: missing GLobalNbId fix X-Git-Tag: R5_RC~109^2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=1d12f828b526e4de1d764461f36b8d434277469a;hp=70a16499e8c7042383f3fe115e6180f398dbab7d;p=ric-plt%2Fe2mgr.git RIC-193 - Setup from RAN: missing GLobalNbId fix Change-Id: I6149236e4e214be8aec7fcbbb47862cec10c8fb8 Signed-off-by: ns019t --- 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