[RIC-432] - Support Update eNB REST API - log changes 16/4416/1
authorIrina <ib565x@intl.att.com>
Mon, 20 Jul 2020 12:22:42 +0000 (15:22 +0300)
committerIrina <ib565x@intl.att.com>
Mon, 20 Jul 2020 12:22:53 +0000 (15:22 +0300)
Change-Id: I0fbc8c6f88a5399c4b5c9bc529b1f37323646b06
Signed-off-by: Irina <ib565x@intl.att.com>
E2Manager/container-tag.yaml
E2Manager/managers/ran_list_manager.go [changed mode: 0644->0755]
E2Manager/managers/update_enb_manager.go [changed mode: 0644->0755]

index bb152ab..d0105e3 100644 (file)
@@ -1,4 +1,4 @@
 # The Jenkins job requires a tag to build the Docker image.
 # Global-JJB script assumes this file is in the repo root.
 ---
-tag: 5.2.19
\ No newline at end of file
+tag: 5.2.20
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index d392e3d..030180f
@@ -126,5 +126,7 @@ func (m *ranListManagerInstance) GetNbIdentityList() []*entities.NbIdentity {
                nbIds = append(nbIds, v)
        }
 
+       m.logger.Infof("#ranListManagerInstance.GetNbIdentityList - %d identity returned", len(nbIds))
+
        return nbIds
 }
old mode 100644 (file)
new mode 100755 (executable)
index 005e9bb..b2cd7d7
@@ -60,7 +60,7 @@ func (h *UpdateEnbManager) Validate(request models.Request) error {
 func (h *UpdateEnbManager) RemoveNodebCells(nodeb *entities.NodebInfo) error {
 
        if nodeb.NodeType != entities.Node_ENB {
-               h.logger.Errorf("#UpdateEnbManager.RemoveNodebCells - RAN name: %s - nodeb missing eNB configuration", nodeb.GetRanName())
+               h.logger.Errorf("#UpdateEnbManager.RemoveNodebCells - RAN name: %s - RAN is not eNB.", nodeb.RanName)
                return e2managererrors.NewRequestValidationError()
        }