[RICPLT-1853] Fix some log messages and adjustments
[ric-plt/e2mgr.git] / E2Manager / handlers / ran_lost_connection_handler.go
index 980c867..1da2d12 100644 (file)
@@ -44,10 +44,5 @@ func (handler RanLostConnectionHandler) Handle(logger *logger.Logger, e2Sessions
 
        logger.Warnf("#RanLostConnectionHandler.Handle - RAN name: %s - Received lost connection notification", ranName)
 
-       err := handler.ranReconnectionManager.ReconnectRan(ranName)
-
-       if err != nil {
-               logger.Errorf("#RanLostConnectionHandler.Handle - An error occurred while trying to reconnect RAN, %v", err)
-               return
-       }
+       _ = handler.ranReconnectionManager.ReconnectRan(ranName)
 }