X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=pkg%2Fsbi%2Fsbi.go;h=9d1380e0de0f56a34f8425e6efa44588c35d0ebe;hb=45b86cc64dc6071f160b0f2c9ab8dfb57d1ce039;hp=58fe7d8e64b94046071652f78ca2ec8033948c8e;hpb=df23f25ac56eb0076e6e8801bb6080468ccf44b6;p=ric-plt%2Frtmgr.git diff --git a/pkg/sbi/sbi.go b/pkg/sbi/sbi.go index 58fe7d8..9d1380e 100644 --- a/pkg/sbi/sbi.go +++ b/pkg/sbi/sbi.go @@ -171,18 +171,3 @@ func (s *Sbi) updateE2TEndpoints(E2Ts *map[string]rtmgr.E2TInstance, sbi Engine) } } } - -func (s *Sbi) createEndpoint(payload string, sbi Engine) (*rtmgr.Endpoint) { - xapp.Logger.Debug("CreateEndPoint %v", payload) - stringSlice := strings.Split(payload, " ") - uuid := stringSlice[0] - xapp.Logger.Debug(">>> uuid %v", stringSlice[0]) - - - if _, ok := rtmgr.Eps[uuid]; ok { - ep := rtmgr.Eps[uuid] - return ep - } - - return nil -}