X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhandlers%2Frmrmsghandlers%2Fran_lost_connection_handler.go;h=e7d3ce5d51028b8ba8c1d0beac2e651f0b4deadd;hb=8b146be80f4b6daa8ce90d8ab62cab9f53f7e4f6;hp=12d4df1b5a17690eacbe926a54c1806e2cd2206f;hpb=a75da9a56d61ca4754650d44a54bbf0b04f610d1;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/handlers/rmrmsghandlers/ran_lost_connection_handler.go b/E2Manager/handlers/rmrmsghandlers/ran_lost_connection_handler.go index 12d4df1..e7d3ce5 100644 --- a/E2Manager/handlers/rmrmsghandlers/ran_lost_connection_handler.go +++ b/E2Manager/handlers/rmrmsghandlers/ran_lost_connection_handler.go @@ -31,13 +31,13 @@ type RanLostConnectionHandler struct { logger *logger.Logger } -func NewRanLostConnectionHandler(logger *logger.Logger, ranDisconnectionManager managers.IRanDisconnectionManager) RanLostConnectionHandler { - return RanLostConnectionHandler{ +func NewRanLostConnectionHandler(logger *logger.Logger, ranDisconnectionManager managers.IRanDisconnectionManager) *RanLostConnectionHandler { + return &RanLostConnectionHandler{ logger: logger, ranDisconnectionManager: ranDisconnectionManager, } } -func (h RanLostConnectionHandler) Handle(request *models.NotificationRequest) { +func (h *RanLostConnectionHandler) Handle(request *models.NotificationRequest) { ranName := request.RanName